add_section( 'main_header_setting', array( 'title' => esc_html__( 'Header Settings', 'ashlar' ), 'priority' => 10, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Enable Disable Search. $wp_customize->add_setting('ed_header_search', array( 'default' => $ashlar_default['ed_header_search'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'ashlar_sanitize_checkbox', ) ); $wp_customize->add_control('ed_header_search', array( 'label' => esc_html__('Enable Search', 'ashlar'), 'section' => 'main_header_setting', 'type' => 'checkbox', ) ); $wp_customize->add_setting('ed_desktop_menu', array( 'default' => $ashlar_default['ed_desktop_menu'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'ashlar_sanitize_checkbox', ) ); $wp_customize->add_control('ed_desktop_menu', array( 'label' => esc_html__('Enable Main Navigation and Hide Mobile Menu on Desktop View', 'ashlar'), 'section' => 'main_header_setting', 'type' => 'checkbox', ) );