add_section( 'section_reset_all_settings', array( 'title' => esc_html__( 'Reset Theme Settings', 'bizroot' ), 'priority' => 1000, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); $wp_customize->add_setting( 'theme_options[reset_all_settings]', array( 'default' => false, 'capability' => 'edit_theme_options', 'transport' => 'postMessage', 'sanitize_callback' => 'bizroot_customize_callback_reset_all_settings', )); $wp_customize->add_control( 'reset_all_settings', array( 'label' => __( 'Reset all theme settings', 'bizroot' ), 'description' => esc_html__( 'Caution: All theme settings along with custom header and custom background will be reset to default. Refresh the page after save to view full effects.', 'bizroot' ), 'type' => 'checkbox', 'section' => 'section_reset_all_settings', 'settings' => 'theme_options[reset_all_settings]', 'priority' => 100, ));