How do I use a color from theme options?
You would simply call that option inside of a callback, and hook it into wp_print_styles or wp_head (either one is semantically correct in this case). First, set up your callback, which will print an inline style sheet: function wpse74013_print_custom_styles() { ?> <style type=”text/css”> </style> <?php } add_action( ‘wp_head’, ‘wpse74013_print_custom_styles’ ); The next step is to … Read more