add_section( 'main_header_setting', array( 'title' => esc_html__( 'Header Settings', 'always' ), 'priority' => 10, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Enable Disable Search. $wp_customize->add_setting('ed_header_search', array( 'default' => $always_default['ed_header_search'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'always_sanitize_checkbox', ) ); $wp_customize->add_control('ed_header_search', array( 'label' => esc_html__('Enable Search', 'always'), 'section' => 'main_header_setting', 'type' => 'checkbox', ) );