add_section( 'title_tagline' , array( 'title' => __( 'Title, Tagline & Logo', 'amora' ), 'priority' => 30, ) ); function amora_logo_enabled($control) { $option = $control->manager->get_setting('custom_logo'); return $option->value() == true; } //Replace Header Text Color with, separate colors for Title and Description $wp_customize->get_control('header_textcolor')->label = __('Site Title Color','amora'); $wp_customize->add_setting('amora_header_desccolor', array( 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize, 'amora_header_desccolor', array( 'label' => __('Site Tagline Color','amora'), 'section' => 'colors', 'settings' => 'amora_header_desccolor', 'type' => 'color' ) ) ); } add_action( 'customize_register', 'amora_customize_register_skins' );