Tagline Color Option
This file contains 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 | |
/** | |
* Additional theme customizer options | |
* | |
* @param WP_Customize_Manager $wp_customize Theme Customizer object. | |
*/ | |
function prefix_customize_register( $wp_customize ) { | |
$wp_customize->add_setting( 'prefix[header_taglinecolor]', array( | |
'default' => '#222222', | |
'type' => 'option' | |
) ); | |
if ( get_theme_mod( 'header_textcolor') !== 'blank' ) { | |
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header_tagline_color', array( | |
'label' => __( 'Header Tagline Color', 'govpress' ), | |
'section' => 'colors', | |
'settings' => 'prefix[header_taglinecolor]' | |
) ) ); | |
} | |
$wp_customize->get_setting( 'header_taglinecolor' )->transport = 'postMessage'; | |
} | |
add_action( 'customize_register', 'prefix_customize_register' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment