b0y-101 Mini Shell


Current Path : E:/www2/tcas/wp-content/themes/businesszen/inc/customizer/theme-options/
File Upload :
Current File : E:/www2/tcas/wp-content/themes/businesszen/inc/customizer/theme-options/reset.php

<?php
/**
 * Reset options
 *
 * @package Theme Palace
 * @subpackage Businesszen
 * @since Businesszen 1.0.0
 */

/**
* Reset section
*/
// Add reset enable section
$wp_customize->add_section( 'businesszen_reset_section', array(
	'title'             => esc_html__('Reset all settings','businesszen'),
	'description'       => esc_html__( 'Caution: All settings will be reset to default. Refresh the page after clicking Save & Publish.', 'businesszen' ),
) );

// Add reset enable setting and control.
$wp_customize->add_setting( 'businesszen_theme_options[reset_options]', array(
	'default'           => $options['reset_options'],
	'sanitize_callback' => 'businesszen_sanitize_checkbox',
	'transport'			  => 'postMessage',
) );

$wp_customize->add_control( 'businesszen_theme_options[reset_options]', array(
	'label'             => esc_html__( 'Check to reset all settings', 'businesszen' ),
	'section'           => 'businesszen_reset_section',
	'type'              => 'checkbox',
) );

Copyright © 2019 by b0y-101