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