Skip to content

Instantly share code, notes, and snippets.

@devinsays
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devinsays/13c75347b239bfb938c0 to your computer and use it in GitHub Desktop.
Save devinsays/13c75347b239bfb938c0 to your computer and use it in GitHub Desktop.
Tagline Color Style Output
/**
* Output styles in the header
*/
function prefix_inline_styles() {
$options = get_option( 'prefix', false );
if ( ! $options ) {
return;
}
$output = '';
if ( isset( $options['header_taglinecolor'] ) ) {
$output .= ".site-description { color:" . sanitize_hex_color( $options['header_taglinecolor'] ) . " }\n";
}
// Output styles
if ($output <> '') {
$output = "<!-- Custom Styling -->\n<style type=\"text/css\">\n" . $output . "</style>\n";
echo $output;
}
}
add_action( 'wp_head', 'prefix_inline_styles', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment