Last active
August 29, 2015 14:14
-
-
Save igmoweb/ad8cd8a827d88e3e18b0 to your computer and use it in GitHub Desktop.
Use wp_head to dinamically generate CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'wp_head', 'dolly_print_styles' ); | |
function dolly_print_styles() { | |
$options = get_option( 'my-options' ); | |
?> | |
<style> | |
.my-class { | |
background-color:<?php echo $options['background-color']; ?>; | |
font-size:<?php echo $options['font-size']; ?>px; | |
} | |
</style> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment