File "switch.php"
Full Path: /home/adniftyx/public_html/wp-content/themes/credio/inc/customizer/control/switch.php
File size: 680 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
function switch_control($credio_customizer){
//Start enabal global setting
$credio_customizer->add_setting( 'credio_enable_global',
array(
'default' => '1',
'sanitize_callback' => 'credio_sanitize_integer'
)
);
$credio_customizer->add_control(
new credio_Customize_Switch_Control(
$credio_customizer,
'credio_enable_global',
array(
'type' => 'switch',
'label' => esc_html__('Enable Global Settings','credio'),
'description' => esc_html__('If you enable global settings all option will be work only theme option','credio'),
'section' => 'credio_general_section'
)
)
);
//End enabal global setting
}