add_section('all_cleaning_services_sidebar_section', array( 'title' => esc_html__('Sidebar Section', 'all-cleaning-services'), 'capability' => 'edit_theme_options', 'panel' => 'all_cleaning_services_theme_section_panel' )); // ///////// Search Background Color $wp_customize->add_setting('Search_background_color', array( 'default' => '#01549a', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'Search_background_color', array( 'section' => 'all_cleaning_services_sidebar_section', 'description' => __('Heading Background Color', 'all-cleaning-services'), ))); // ////////// Heading Text Color $wp_customize->add_setting('Heading_text_color', array( 'default' => '#fdc401', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'Heading_text_color', array( 'section' => 'all_cleaning_services_sidebar_section', 'description' => __('Heading Text Color', 'all-cleaning-services'), )));