Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2. add_action( 'plugins_loaded', 'dolly_generate_css_file' );
  3. function dolly_generate_css_file() {
  4. if ( isset( $_GET['dolly-styles'] ) && $_GET['dolly-styles'] === 'true' ) {
  5. header( 'Content-type: text/css' );
  6.  
  7. $options = get_option( 'dolly-options' );
  8. ?>
  9. .mi-clase {
  10. background:<?php echo $options['background-color']; ?>;
  11. font-size:<?php echo $options['font-size']; ?>px;
  12. }
  13. <?php
  14. exit;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement