Skip to content

Instantly share code, notes, and snippets.

@bradpotter
Created July 2, 2014 21:06
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 bradpotter/3d6dc33f892f47042b5e to your computer and use it in GitHub Desktop.
Save bradpotter/3d6dc33f892f47042b5e to your computer and use it in GitHub Desktop.
function my_customizer_css() {
?>
<style type="text/css">
<?php $color = get_theme_mod( 'header_background_color' ); if ( $color ) { printf( '.site-header { background-color: %s; }', $color ); } ?>
</style>
<?php
}
add_action( 'wp_head', 'my_customizer_css' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment