add_section( 'online-shop-reset-options', array( 'priority' => 220, 'capability' => 'edit_theme_options', 'title' => esc_html__( 'Reset Options', 'online-shop' ) ) ); /*Reset Options*/ $wp_customize->add_setting( 'online_shop_theme_options[online-shop-reset-options]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['online-shop-reset-options'], 'sanitize_callback' => 'online_shop_sanitize_select', 'transport' => 'postMessage' ) ); $choices = online_shop_reset_options(); $wp_customize->add_control( 'online_shop_theme_options[online-shop-reset-options]', array( 'choices' => $choices, 'label' => esc_html__( 'Reset Options', 'online-shop' ), 'description'=> esc_html__( 'Caution: Reset theme settings according to the given options. Refresh the page after saving to view the effects. ', 'online-shop' ), 'section' => 'online-shop-reset-options', 'settings' => 'online_shop_theme_options[online-shop-reset-options]', 'type' => 'select' ) );