add_setting( 'reblog_header_title_color', array( 'sanitize_callback' => 'reblog_sanitize_hex_color', 'default' => '#ce8460', 'transport' => 'refresh', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'reblog_header_title_color', array( 'section' => 'colors', 'label' => esc_html__( 'Site title Color:', 'power-blog' ), ) ) ); // Header tagline color setting $wp_customize->add_setting( 'reblog_header_tagline', array( 'sanitize_callback' => 'reblog_sanitize_hex_color', 'default' => '#7b7b7b', 'transport' => 'refresh', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'reblog_header_tagline', array( 'section' => 'colors', 'label' => esc_html__( 'Site tagline Color:', 'power-blog' ), ) ) ); } add_action( 'customize_register', 'power_blog_customize_register', 99 ); if(! function_exists('power_blog_customizer_css_final_output' ) ): function power_blog_customizer_css_final_output(){ ?>