katstar01
8/11/2016 - 7:23 PM

Function for adding customizer css to the head of the wp document

Function for adding customizer css to the head of the wp document

function mytheme_customize_css()
{
    ?>
         <style type="text/css">
             h1 { color: #<?php echo get_theme_mod('header_color', '000000'); ?>; }
         </style>
    <?php
}
add_action( 'wp_head', 'mytheme_customize_css');