File: /var/www/vhosts/jcorrmechanical.com/httpdocs/wp-content/themes/smart-cleaning/inc/customizer.php
<?php
/**
* Smart Cleaning Theme Customizer
*
* @link: https://developer.wordpress.org/themes/customize-api/customizer-objects/
*
* @package Smart Cleaning
*/
if ( ! defined( 'SMART_CLEANING_URL' ) ) {
define( 'SMART_CLEANING_URL', esc_url( 'https://www.themagnifico.net/products/cleaning-wordpress-theme', 'smart-cleaning') );
}
if ( ! defined( 'SMART_CLEANING_TEXT' ) ) {
define( 'SMART_CLEANING_TEXT', __( 'Smart Cleaning Pro','smart-cleaning' ));
}
if ( ! defined( 'SMART_CLEANING_BUY_TEXT' ) ) {
define( 'SMART_CLEANING_BUY_TEXT', __( 'Buy Smart Cleaning Pro','smart-cleaning' ));
}
use WPTRT\Customize\Section\Smart_Cleaning_Button;
add_action( 'customize_register', function( $manager ) {
$manager->register_section_type( Smart_Cleaning_Button::class );
$manager->add_section(
new Smart_Cleaning_Button( $manager, 'smart_cleaning_pro', [
'title' => esc_html( SMART_CLEANING_TEXT,'smart-cleaning' ),
'priority' => 0,
'button_text' => __( 'GET PREMIUM', 'smart-cleaning' ),
'button_url' => esc_url( SMART_CLEANING_URL )
] )
);
} );
// Load the JS and CSS.
add_action( 'customize_controls_enqueue_scripts', function() {
$version = wp_get_theme()->get( 'Version' );
wp_enqueue_script(
'smart-cleaning-customize-section-button',
get_theme_file_uri( 'vendor/wptrt/customize-section-button/public/js/customize-controls.js' ),
[ 'customize-controls' ],
$version,
true
);
wp_enqueue_style(
'smart-cleaning-customize-section-button',
get_theme_file_uri( 'vendor/wptrt/customize-section-button/public/css/customize-controls.css' ),
[ 'customize-controls' ],
$version
);
} );
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function smart_cleaning_customize_register($wp_customize){
// Pro Version
class Smart_Cleaning_Customize_Pro_Version extends WP_Customize_Control {
public $type = 'pro_options';
public function render_content() {
echo '<span>For More <strong>'. esc_html( $this->label ) .'</strong>?</span>';
echo '<a href="'. esc_url($this->description) .'" target="_blank">';
echo '<span class="dashicons dashicons-info"></span>';
echo '<strong> '. esc_html( SMART_CLEANING_BUY_TEXT,'smart-cleaning' ) .'<strong></a>';
echo '</a>';
}
}
// Custom Controls
function Smart_Cleaning_sanitize_custom_control( $input ) {
return $input;
}
$wp_customize->get_setting('blogname')->transport = 'postMessage';
$wp_customize->get_setting('blogdescription')->transport = 'postMessage';
//Logo
$wp_customize->add_setting('smart_cleaning_logo_max_height',array(
'default' => '24',
'sanitize_callback' => 'smart_cleaning_sanitize_number_absint'
));
$wp_customize->add_control('smart_cleaning_logo_max_height',array(
'label' => esc_html__('Logo Width','smart-cleaning'),
'section' => 'title_tagline',
'type' => 'number'
));
$wp_customize->add_setting('smart_cleaning_logo_title', array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_logo_title',array(
'label' => __( 'Enable Disable Title', 'smart-cleaning' ),
'section' => 'title_tagline',
'settings' => 'smart_cleaning_logo_title',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_theme_description', array(
'default' => false,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_theme_description',array(
'label' => __( 'Enable Disable Tagline', 'smart-cleaning' ),
'section' => 'title_tagline',
'settings' => 'smart_cleaning_theme_description',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_logo_title_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'smart_cleaning_logo_title_color', array(
'label' => __('Site Title Color', 'smart-cleaning'),
'section' => 'title_tagline'
)));
$wp_customize->add_setting('smart_cleaning_logo_tagline_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'smart_cleaning_logo_tagline_color', array(
'label' => __('Site Tagline Color', 'smart-cleaning'),
'section' => 'title_tagline'
)));
// Pro Version
$wp_customize->add_setting( 'pro_version_logo', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_logo', array(
'section' => 'title_tagline',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
// Theme Color
$wp_customize->add_section('smart_cleaning_color_option',array(
'title' => esc_html__('Theme Color','smart-cleaning'),
'priority' => 10,
));
$wp_customize->add_setting( 'smart_cleaning_theme_color_one', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_theme_color_one', array(
'label' => esc_html__('First Color Option','smart-cleaning'),
'section' => 'smart_cleaning_color_option',
'settings' => 'smart_cleaning_theme_color_one'
)));
$wp_customize->add_setting( 'smart_cleaning_theme_color_two', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_theme_color_two', array(
'label' => esc_html__('Second Color Option','smart-cleaning'),
'section' => 'smart_cleaning_color_option',
'settings' => 'smart_cleaning_theme_color_two'
)));
// Pro Version
$wp_customize->add_setting( 'pro_version_theme_color', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_theme_color', array(
'section' => 'smart_cleaning_color_option',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
// Pro Version
$wp_customize->add_setting( 'pro_version_404_setting', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_404_setting', array(
'section' => 'smart_cleaning_404_page_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
//404 Page Settings
$wp_customize->add_section('smart_cleaning_404_page_settings',array(
'title' => esc_html__(' 404 Page Settings','smart-cleaning')
));
$wp_customize->add_setting('smart_cleaning_404_page_main_heading',array(
'default' => __( 'Oops! Page Not Found', 'smart-cleaning' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_404_page_main_heading',array(
'label' => esc_html__('404 Main Heading','smart-cleaning'),
'section' => 'smart_cleaning_404_page_settings',
'setting' => 'smart_cleaning_404_page_main_heading',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_404_page_content_1',array(
'default' => __( 'We can’t seem to find the page you’re looking for.', 'smart-cleaning' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_404_page_content_1',array(
'label' => esc_html__('404 Main Content 1','smart-cleaning'),
'section' => 'smart_cleaning_404_page_settings',
'setting' => 'smart_cleaning_404_page_content_1',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_404_page_text_1',array(
'default' => __( 'It looks like nothing was found at this location.', 'smart-cleaning' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_404_page_text_1',array(
'label' => esc_html__('404 Text 1','smart-cleaning'),
'section' => 'smart_cleaning_404_page_settings',
'setting' => 'smart_cleaning_404_page_text_1',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_404_page_content_2',array(
'default' => __( 'Need Help?', 'smart-cleaning' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_404_page_content_2',array(
'label' => esc_html__('404 Main Content 2','smart-cleaning'),
'section' => 'smart_cleaning_404_page_settings',
'setting' => 'smart_cleaning_404_page_content_2',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_404_page_text_2',array(
'default' => __( 'Try searching for what you need below.', 'smart-cleaning' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_404_page_text_2',array(
'label' => esc_html__('404 Text 2','smart-cleaning'),
'section' => 'smart_cleaning_404_page_settings',
'setting' => 'smart_cleaning_404_page_text_2',
'type' => 'text'
));
// Header
$wp_customize->add_section('smart_cleaning_header_top',array(
'title' => esc_html__('Header','smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_blog_topbar_setting', array(
'default' => 1,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_blog_topbar_setting',array(
'label' => __( 'Enable Disable Header', 'smart-cleaning' ),
'section' => 'smart_cleaning_header_top',
'settings' => 'smart_cleaning_blog_topbar_setting',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_topbar_email_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_topbar_email_icon',array(
'label' => esc_html__('Add Email Address Icon','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_topbar_email_icon',
'type' => 'text',
'default' => 'fas fa-envelope',
'description' => __('Select font awesome icons <a target="_blank" href="https://fontawesome.com/v5/search?m=free">Click Here</a> for select icon. for eg:-fas fa-envelope','smart-cleaning')
));
$wp_customize->add_setting('smart_cleaning_topbar_email',array(
'default' => '',
'sanitize_callback' => 'sanitize_email'
));
$wp_customize->add_control('smart_cleaning_topbar_email',array(
'label' => esc_html__('Email Address','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_topbar_email',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_topbar_text1',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_topbar_text1',array(
'label' => esc_html__('Text 1','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_topbar_text1',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_topbar_link1',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('smart_cleaning_topbar_link1',array(
'label' => esc_html__('Link 1','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_topbar_link1',
'type' => 'url'
));
$wp_customize->add_setting('smart_cleaning_topbar_text2',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_topbar_text2',array(
'label' => esc_html__('Text 2','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_topbar_text2',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_topbar_link2',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('smart_cleaning_topbar_link2',array(
'label' => esc_html__('Link 2','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_topbar_link2',
'type' => 'url'
));
$wp_customize->add_setting('smart_cleaning_topbar_text3',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_topbar_text3',array(
'label' => esc_html__('Text 3','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_topbar_text3',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_topbar_link3',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('smart_cleaning_topbar_link3',array(
'label' => esc_html__('Link 3','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_topbar_link3',
'type' => 'url'
));
$wp_customize->add_setting('smart_cleaning_header_location_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_header_location_icon',array(
'label' => esc_html__('Add Location Icon','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_header_location_icon',
'type' => 'text',
'default' => 'fas fa-map-marker-alt',
'description' => __('Select font awesome icons <a target="_blank" href="https://fontawesome.com/v5/search?m=free">Click Here</a> for select icon. for eg:-fas fa-map-marker-alt','smart-cleaning')
));
$wp_customize->add_setting('smart_cleaning_header_location',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_header_location',array(
'label' => esc_html__('Location','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_header_location',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_header_phone_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_header_phone_icon',array(
'label' => esc_html__('Add Phone Number Icon','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_header_phone_icon',
'type' => 'text',
'default' => 'fas fa-phone',
'description' => __('Select font awesome icons <a target="_blank" href="https://fontawesome.com/v5/search?m=free">Click Here</a> for select icon. for eg:-fas fa-phone','smart-cleaning')
));
$wp_customize->add_setting('smart_cleaning_header_phone',array(
'default' => '',
'sanitize_callback' => 'smart_cleaning_sanitize_phone_number'
));
$wp_customize->add_control('smart_cleaning_header_phone',array(
'label' => esc_html__('Phone Number','smart-cleaning'),
'section' => 'smart_cleaning_header_top',
'setting' => 'smart_cleaning_header_phone',
'type' => 'text'
));
// Pro Version
$wp_customize->add_setting( 'pro_version_header_setting', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_header_setting', array(
'section' => 'smart_cleaning_header_top',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
//Typography option
$smart_cleaning_font_array = array(
'' => 'No Fonts',
'Abril Fatface' => 'Abril Fatface',
'Acme' => 'Acme',
'Anton' => 'Anton',
'Architects Daughter' => 'Architects Daughter',
'Arimo' => 'Arimo',
'Arsenal' => 'Arsenal',
'Arvo' => 'Arvo',
'Alegreya' => 'Alegreya',
'Alfa Slab One' => 'Alfa Slab One',
'Averia Serif Libre' => 'Averia Serif Libre',
'Bangers' => 'Bangers',
'Boogaloo' => 'Boogaloo',
'Bad Script' => 'Bad Script',
'Bitter' => 'Bitter',
'Bree Serif' => 'Bree Serif',
'BenchNine' => 'BenchNine',
'Cabin' => 'Cabin',
'Cardo' => 'Cardo',
'Courgette' => 'Courgette',
'Cherry Swash' => 'Cherry Swash',
'Cormorant Garamond' => 'Cormorant Garamond',
'Crimson Text' => 'Crimson Text',
'Cuprum' => 'Cuprum',
'Cookie' => 'Cookie',
'Chewy' => 'Chewy',
'Days One' => 'Days One',
'Dosis' => 'Dosis',
'Droid Sans' => 'Droid Sans',
'Economica' => 'Economica',
'Fredoka One' => 'Fredoka One',
'Fjalla One' => 'Fjalla One',
'Francois One' => 'Francois One',
'Frank Ruhl Libre' => 'Frank Ruhl Libre',
'Gloria Hallelujah' => 'Gloria Hallelujah',
'Great Vibes' => 'Great Vibes',
'Handlee' => 'Handlee',
'Hammersmith One' => 'Hammersmith One',
'Inconsolata' => 'Inconsolata',
'Indie Flower' => 'Indie Flower',
'IM Fell English SC' => 'IM Fell English SC',
'Julius Sans One' => 'Julius Sans One',
'Josefin Slab' => 'Josefin Slab',
'Josefin Sans' => 'Josefin Sans',
'Kanit' => 'Kanit',
'Lobster' => 'Lobster',
'Lato' => 'Lato',
'Lora' => 'Lora',
'Libre Baskerville' => 'Libre Baskerville',
'Lobster Two' => 'Lobster Two',
'Merriweather' => 'Merriweather',
'Monda' => 'Monda',
'Montserrat' => 'Montserrat',
'Muli' => 'Muli',
'Marck Script' => 'Marck Script',
'Noto Serif' => 'Noto Serif',
'Open Sans' => 'Open Sans',
'Overpass' => 'Overpass',
'Overpass Mono' => 'Overpass Mono',
'Oxygen' => 'Oxygen',
'Orbitron' => 'Orbitron',
'Patua One' => 'Patua One',
'Pacifico' => 'Pacifico',
'Padauk' => 'Padauk',
'Playball' => 'Playball',
'Playfair Display' => 'Playfair Display',
'PT Sans' => 'PT Sans',
'Philosopher' => 'Philosopher',
'Permanent Marker' => 'Permanent Marker',
'Poiret One' => 'Poiret One',
'Quicksand' => 'Quicksand',
'Quattrocento Sans' => 'Quattrocento Sans',
'Raleway' => 'Raleway',
'Rubik' => 'Rubik',
'Roboto' => 'Roboto',
'Rokkitt' => 'Rokkitt',
'Russo One' => 'Russo One',
'Righteous' => 'Righteous',
'Slabo' => 'Slabo',
'Source Sans Pro' => 'Source Sans Pro',
'Shadows Into Light Two' => 'Shadows Into Light Two',
'Shadows Into Light' => 'Shadows Into Light',
'Sacramento' => 'Sacramento',
'Shrikhand' => 'Shrikhand',
'Tangerine' => 'Tangerine',
'Ubuntu' => 'Ubuntu',
'VT323' => 'VT323',
'Varela Round' => 'Varela Round',
'Vampiro One' => 'Vampiro One',
'Vollkorn' => 'Vollkorn',
'Volkhov' => 'Volkhov',
'Yanone Kaffeesatz' => 'Yanone Kaffeesatz'
);
// Heading Typography
$wp_customize->add_setting( 'smart_cleaning_heading_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_heading_color', array(
'label' => __('Heading Color', 'smart-cleaning'),
'section' => 'smart_cleaning_color_option',
'settings' => 'smart_cleaning_heading_color',
)));
$wp_customize->add_setting('smart_cleaning_heading_font_family', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'smart_cleaning_sanitize_choices',
));
$wp_customize->add_control( 'smart_cleaning_heading_font_family', array(
'section' => 'smart_cleaning_color_option',
'label' => __('Heading Fonts', 'smart-cleaning'),
'type' => 'select',
'choices' => $smart_cleaning_font_array,
));
$wp_customize->add_setting('smart_cleaning_heading_font_size',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_heading_font_size',array(
'label' => esc_html__('Heading Font Size','smart-cleaning'),
'section' => 'smart_cleaning_color_option',
'setting' => 'smart_cleaning_heading_font_size',
'type' => 'text'
));
// Paragraph Typography
$wp_customize->add_setting( 'smart_cleaning_paragraph_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_paragraph_color', array(
'label' => __('Paragraph Color', 'smart-cleaning'),
'section' => 'smart_cleaning_color_option',
'settings' => 'smart_cleaning_paragraph_color',
)));
$wp_customize->add_setting('smart_cleaning_paragraph_font_family', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'smart_cleaning_sanitize_choices',
));
$wp_customize->add_control( 'smart_cleaning_paragraph_font_family', array(
'section' => 'smart_cleaning_color_option',
'label' => __('Paragraph Fonts', 'smart-cleaning'),
'type' => 'select',
'choices' => $smart_cleaning_font_array,
));
$wp_customize->add_setting('smart_cleaning_paragraph_font_size',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_paragraph_font_size',array(
'label' => esc_html__('Paragraph Font Size','smart-cleaning'),
'section' => 'smart_cleaning_color_option',
'setting' => 'smart_cleaning_paragraph_font_size',
'type' => 'text'
));
// Post Layouts Settings
$wp_customize->add_section('smart_cleaning_post_layouts_settings',array(
'title' => esc_html__('Post Layouts Settings','smart-cleaning'),
'priority' => 30,
));
$wp_customize->add_setting('smart_cleaning_post_layout',array(
'default' => 'pattern_two_column_right',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control(new Smart_Cleaning_Image_Radio_Control($wp_customize, 'smart_cleaning_post_layout', array(
'type' => 'select',
'label' => __('Blog Post Layouts','smart-cleaning'),
'section' => 'smart_cleaning_post_layouts_settings',
'choices' => array(
'pattern_one_column' => esc_url(get_template_directory_uri()).'/assets/img/1column.png',
'pattern_two_column_right' => esc_url(get_template_directory_uri()).'/assets/img/right-sidebar.png',
'pattern_two_column_left' => esc_url(get_template_directory_uri()).'/assets/img/left-sidebar.png',
'pattern_three_column' => esc_url(get_template_directory_uri()).'/assets/img/3column.png',
'pattern_four_column' => esc_url(get_template_directory_uri()).'/assets/img/4column.png',
'pattern_grid_post' => esc_url(get_template_directory_uri()).'/assets/img/grid.png',
))
));
// Pro Version
$wp_customize->add_setting( 'pro_version_logo', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_logo', array(
'section' => 'smart_cleaning_post_layouts_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
// General Settings
$wp_customize->add_section('smart_cleaning_general_settings',array(
'title' => esc_html__('General Settings','smart-cleaning'),
'priority' => 10,
));
$wp_customize->add_setting('smart_cleaning_site_width_layout',array(
'default' => 'Full Width',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_site_width_layout',array(
'label' => esc_html__( 'Site Width Layout','smart-cleaning' ),
'type' => 'radio',
'section' => 'smart_cleaning_general_settings',
'choices' => array(
'Full Width' => __('Full Width','smart-cleaning'),
'Wide Width' => __('Wide Width','smart-cleaning'),
'Container Width' => __('Container Width','smart-cleaning')
),
));
$wp_customize->add_setting('smart_cleaning_preloader_hide', array(
'default' => false,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_preloader_hide',array(
'label' => __( 'Show Theme Preloader', 'smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_preloader_hide',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_preloader_type',array(
'default' => 'Preloader 1',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_preloader_type',array(
'type' => 'radio',
'label' => esc_html__('Preloader Type','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'choices' => array(
'Preloader 1' => __('Preloader 1','smart-cleaning'),
'Preloader 2' => __('Preloader 2','smart-cleaning'),
),
) );
$wp_customize->add_setting( 'smart_cleaning_preloader_bg_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_preloader_bg_color', array(
'label' => esc_html__('Preloader Background Color','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_preloader_bg_color'
)));
$wp_customize->add_setting( 'smart_cleaning_preloader_dot_1_color', array(
'default' => '#ffffff',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_preloader_dot_1_color', array(
'label' => esc_html__('Preloader First Dot Color','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_preloader_dot_1_color',
'active_callback' => 'smart_cleaning_preloader1'
)));
$wp_customize->add_setting( 'smart_cleaning_preloader_dot_2_color', array(
'default' => '#f10026',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_preloader_dot_2_color', array(
'label' => esc_html__('Preloader Second Dot Color','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_preloader_dot_2_color',
'active_callback' => 'smart_cleaning_preloader1'
)));
$wp_customize->add_setting( 'smart_cleaning_preloader2_dot_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_preloader2_dot_color', array(
'label' => esc_html__('Preloader Dot Color','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_preloader2_dot_color',
'active_callback' => 'smart_cleaning_preloader2'
)));
$wp_customize->add_setting('smart_cleaning_sticky_header', array(
'default' => false,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_sticky_header',array(
'label' => __( 'Show Sticky Header', 'smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_sticky_header',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_scroll_hide', array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_scroll_hide',array(
'label' => __( 'Show Theme Scroll To Top', 'smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_scroll_hide',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_scroll_top_position',array(
'default' => 'Right',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_scroll_top_position',array(
'label' => esc_html__( 'Scroll To Top Positions','smart-cleaning' ),
'type' => 'radio',
'section' => 'smart_cleaning_general_settings',
'choices' => array(
'Right' => __('Right','smart-cleaning'),
'Left' => __('Left','smart-cleaning'),
'Center' => __('Center','smart-cleaning')
),
) );
$wp_customize->add_setting( 'smart_cleaning_scroll_bg_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_scroll_bg_color', array(
'label' => esc_html__('Scroll Top Background Color','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_scroll_bg_color'
)));
$wp_customize->add_setting( 'smart_cleaning_scroll_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_scroll_color', array(
'label' => esc_html__('Scroll Top Color','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_scroll_color'
)));
$wp_customize->add_setting('smart_cleaning_scroll_font_size',array(
'default' => '16',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_scroll_font_size',array(
'label' => __('Scroll Top Font Size','smart-cleaning'),
'description' => __('Put in px','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'type' => 'number'
));
$wp_customize->add_setting( 'smart_cleaning_scroll_to_top_border_radius', array(
'default' => '',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_number_range'
) );
$wp_customize->add_control( 'smart_cleaning_scroll_to_top_border_radius', array(
'label' => esc_html__( 'Scroll To Top Border Radius','smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
// Product Columns
$wp_customize->add_setting( 'smart_cleaning_products_per_row' , array(
'default' => '3',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_select',
) );
$wp_customize->add_control('smart_cleaning_products_per_row', array(
'label' => __( 'Product per row', 'smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'type' => 'select',
'choices' => array(
'2' => '2',
'3' => '3',
'4' => '4',
),
) );
$wp_customize->add_setting('smart_cleaning_product_per_page',array(
'default' => '9',
'sanitize_callback' => 'smart_cleaning_sanitize_float'
));
$wp_customize->add_control('smart_cleaning_product_per_page',array(
'label' => __('Product per page','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'type' => 'number'
));
// Product Columns
$wp_customize->add_setting('custom_related_products_number_per_row',array(
'default' => '3',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control('custom_related_products_number_per_row',array(
'label' => esc_html__('Related Products Column Count', 'smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 4,
),
));
// Product Columns
$wp_customize->add_setting('custom_related_products_number',array(
'default' => '3',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control('custom_related_products_number',array(
'label' => esc_html__('Number of Related Products Per Page', 'smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 10,
),
));
$wp_customize->add_setting('smart_cleaning_related_product_display_setting', array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_related_product_display_setting',array(
'label' => __( 'Show Related Products', 'smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_related_product_display_setting',
'type' => 'checkbox',
)));
//Woocommerce shop page Sidebar
$wp_customize->add_setting('smart_cleaning_woocommerce_shop_page_sidebar', array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_woocommerce_shop_page_sidebar',array(
'label' => __( 'Hide Shop Page Sidebar', 'smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_woocommerce_shop_page_sidebar',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_shop_page_sidebar_layout',array(
'default' => 'Right Sidebar',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_shop_page_sidebar_layout',array(
'type' => 'select',
'label' => __('Woocommerce Shop Page Sidebar','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'choices' => array(
'Left Sidebar' => __('Left Sidebar','smart-cleaning'),
'Right Sidebar' => __('Right Sidebar','smart-cleaning'),
),
) );
//Woocommerce Single Product page Sidebar
$wp_customize->add_setting('smart_cleaning_woocommerce_single_product_page_sidebar', array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_woocommerce_single_product_page_sidebar',array(
'label' => __( 'Hide Single Product Page Sidebar', 'smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_woocommerce_single_product_page_sidebar',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_single_product_sidebar_layout',array(
'default' => 'Right Sidebar',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_single_product_sidebar_layout',array(
'type' => 'select',
'label' => __('Woocommerce Single Product Page Sidebar','smart-cleaning'),
'section' => 'smart_cleaning_general_settings',
'choices' => array(
'Left Sidebar' => __('Left Sidebar','smart-cleaning'),
'Right Sidebar' => __('Right Sidebar','smart-cleaning'),
),
) );
$wp_customize->add_setting( 'smart_cleaning_woo_product_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_number_range'
) );
$wp_customize->add_control( 'smart_cleaning_woo_product_image_box_shadow', array(
'label' => esc_html__( 'Product Image Box Shadow','smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting( 'smart_cleaning_woo_product_sale_border_radius', array(
'default' => '',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_number_range'
) );
$wp_customize->add_control( 'smart_cleaning_woo_product_sale_border_radius', array(
'label' => esc_html__( 'Woocommerce Product Sale Border Radius','smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
// Related Product
$wp_customize->add_setting('smart_cleaning_woocommerce_related_product_show_hide', array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_woocommerce_related_product_show_hide',array(
'label' => __( 'Show / Hide Related product', 'smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'settings' => 'smart_cleaning_woocommerce_related_product_show_hide',
'type' => 'checkbox',
)));
//Products border radius
$wp_customize->add_setting( 'smart_cleaning_woo_product_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_number_range'
) );
$wp_customize->add_control( 'smart_cleaning_woo_product_border_radius', array(
'label' => esc_html__( 'Product Border Radius','smart-cleaning' ),
'section' => 'smart_cleaning_general_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 150,
),
) );
// Pro Version
$wp_customize->add_setting( 'pro_version_general_setting', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_general_setting', array(
'section' => 'smart_cleaning_general_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
// Post Settings
$wp_customize->add_section('smart_cleaning_post_settings',array(
'title' => esc_html__('Post Settings','smart-cleaning'),
'priority' =>20,
));
$wp_customize->add_setting('smart_cleaning_post_page_title',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_post_page_title',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Title', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable title on post page.', 'smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_post_page_thumb',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_post_page_thumb',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Thumbnail', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable thumbnail on post page.', 'smart-cleaning'),
));
$wp_customize->add_setting( 'smart_cleaning_post_page_image_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_number_range'
) );
$wp_customize->add_control( 'smart_cleaning_post_page_image_border_radius', array(
'label' => esc_html__( 'Post Page Image Border Radius','smart-cleaning' ),
'section' => 'smart_cleaning_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting( 'smart_cleaning_post_page_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_number_range'
) );
$wp_customize->add_control( 'smart_cleaning_post_page_image_box_shadow', array(
'label' => esc_html__( 'Post Page Image Box Shadow','smart-cleaning' ),
'section' => 'smart_cleaning_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting('smart_cleaning_post_page_content',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_post_page_content',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Content', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable content on post page.', 'smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_post_page_excerpt_length',array(
'sanitize_callback' => 'smart_cleaning_sanitize_number_range',
'default' => 30,
));
$wp_customize->add_control('smart_cleaning_post_page_excerpt_length',array(
'label' => esc_html__('Post Page Excerpt Length', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
));
$wp_customize->add_setting('smart_cleaning_post_page_excerpt_suffix',array(
'sanitize_callback' => 'sanitize_text_field',
'default' => '[...]',
));
$wp_customize->add_control('smart_cleaning_post_page_excerpt_suffix',array(
'type' => 'text',
'label' => esc_html__('Post Page Excerpt Suffix', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('For Ex. [...], etc', 'smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_post_page_cat',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_post_page_cat',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Category and Tags', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable category and tags on post page.', 'smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_post_page_pagination',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_post_page_pagination',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Pagination', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable pagination on post page.', 'smart-cleaning'),
));
$wp_customize->add_setting( 'smart_cleaning_blog_pagination_type', array(
'default' => 'blog-nav-numbers',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control( 'smart_cleaning_blog_pagination_type', array(
'section' => 'smart_cleaning_post_settings',
'type' => 'select',
'label' => __( 'Post Pagination Type', 'smart-cleaning' ),
'choices' => array(
'blog-nav-numbers' => __( 'Numeric', 'smart-cleaning' ),
'next-prev' => __( 'Older/Newer Posts', 'smart-cleaning' ),
)
));
$wp_customize->add_setting('smart_cleaning_single_post_thumb',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_single_post_thumb',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Single Post Thumbnail', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable post thumbnail on single post.', 'smart-cleaning'),
));
$wp_customize->add_setting( 'smart_cleaning_single_post_page_image_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_number_range'
) );
$wp_customize->add_control( 'smart_cleaning_single_post_page_image_border_radius', array(
'label' => esc_html__( 'Single Post Page Image Border Radius','smart-cleaning' ),
'section' => 'smart_cleaning_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting( 'smart_cleaning_single_post_page_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_number_range'
) );
$wp_customize->add_control( 'smart_cleaning_single_post_page_image_box_shadow', array(
'label' => esc_html__( 'Single Post Page Image Box Shadow','smart-cleaning' ),
'section' => 'smart_cleaning_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting('smart_cleaning_single_post_meta',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_single_post_meta',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Single Post Meta', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable single post meta such as post date, author, category, comment etc.', 'smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_single_post_title',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_single_post_title',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Single Post Title', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable title on single post.', 'smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_single_post_page_content',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_single_post_page_content',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Single Post Page Content', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable content on single post page.', 'smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_single_post_cat',array(
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('smart_cleaning_single_post_cat',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Single Post Category and Tags', 'smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
'description' => esc_html__('Check this box to enable post category and tags on single post.', 'smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_single_post_navigation_show_hide',array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control('smart_cleaning_single_post_navigation_show_hide',array(
'type' => 'checkbox',
'label' => __('Show / Hide Post Navigation','smart-cleaning'),
'section' => 'smart_cleaning_post_settings',
));
$wp_customize->add_setting('smart_cleaning_single_post_comment_title',array(
'default'=> 'Leave a Reply',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_single_post_comment_title',array(
'label' => __('Add Comment Title','smart-cleaning'),
'input_attrs' => array(
'placeholder' => __( 'Leave a Reply', 'smart-cleaning' ),
),
'section'=> 'smart_cleaning_post_settings',
'type'=> 'text'
));
$wp_customize->add_setting('smart_cleaning_single_post_comment_btn_text',array(
'default'=> 'Post Comment',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_single_post_comment_btn_text',array(
'label' => __('Add Comment Button Text','smart-cleaning'),
'input_attrs' => array(
'placeholder' => __( 'Post Comment', 'smart-cleaning' ),
),
'section'=> 'smart_cleaning_post_settings',
'type'=> 'text'
));
// Pro Version
$wp_customize->add_setting( 'pro_version_post_setting', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_post_setting', array(
'section' => 'smart_cleaning_post_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
// Pro Version
$wp_customize->add_setting( 'pro_version_single_page_setting', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_single_page_setting', array(
'section' => 'smart_cleaning_page_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
// Social Link
$wp_customize->add_section('smart_cleaning_social_link',array(
'title' => esc_html__('Social Links','smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_blog_social_icon_setting', array(
'default' => 1,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_blog_social_icon_setting',array(
'label' => __( 'Enable Disable Social', 'smart-cleaning' ),
'section' => 'smart_cleaning_social_link',
'settings' => 'smart_cleaning_blog_social_icon_setting',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_facebook_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_facebook_icon',array(
'label' => esc_html__('Add Facebook Icon','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_facebook_icon',
'type' => 'text',
'default' => 'fab fa-facebook-f',
'description' => __('Select font awesome icons <a target="_blank" href="https://fontawesome.com/v5/search?m=free">Click Here</a> for select icon. for eg:-fab fa-facebook-f','smart-cleaning')
));
$wp_customize->add_setting('smart_cleaning_facebook_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('smart_cleaning_facebook_url',array(
'label' => esc_html__('Facebook Link','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_facebook_url',
'type' => 'url'
));
$wp_customize->add_setting('smart_cleaning_twitter_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_twitter_icon',array(
'label' => esc_html__('Add Twitter Icon','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_twitter_icon',
'type' => 'text',
'default' => 'fab fa-twitter',
'description' => __('Select font awesome icons <a target="_blank" href="https://fontawesome.com/v5/search?m=free">Click Here</a> for select icon. for eg:-fab fa-twitter','smart-cleaning')
));
$wp_customize->add_setting('smart_cleaning_twitter_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('smart_cleaning_twitter_url',array(
'label' => esc_html__('Twitter Link','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_twitter_url',
'type' => 'url'
));
$wp_customize->add_setting('smart_cleaning_intagram_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_intagram_icon',array(
'label' => esc_html__('Add Intagram Icon','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_intagram_icon',
'type' => 'text',
'default' => 'fab fa-instagram',
'description' => __('Select font awesome icons <a target="_blank" href="https://fontawesome.com/v5/search?m=free">Click Here</a> for select icon. for eg:-fab fa-instagram','smart-cleaning')
));
$wp_customize->add_setting('smart_cleaning_intagram_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('smart_cleaning_intagram_url',array(
'label' => esc_html__('Intagram Link','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_intagram_url',
'type' => 'url'
));
$wp_customize->add_setting('smart_cleaning_linkedin_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_linkedin_icon',array(
'label' => esc_html__('Add Linkedin Icon','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_linkedin_icon',
'type' => 'text',
'default' => 'fab fa-linkedin-in',
'description' => __('Select font awesome icons <a target="_blank" href="https://fontawesome.com/v5/search?m=free">Click Here</a> for select icon. for eg:-fab fa-linkedin-in','smart-cleaning')
));
$wp_customize->add_setting('smart_cleaning_linkedin_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('smart_cleaning_linkedin_url',array(
'label' => esc_html__('Linkedin Link','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_linkedin_url',
'type' => 'url'
));
$wp_customize->add_setting('smart_cleaning_pintrest_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_pintrest_icon',array(
'label' => esc_html__('Add Intagram Icon','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_pintrest_icon',
'type' => 'text',
'default' => 'fab fa-pinterest-p',
'description' => __('Select font awesome icons <a target="_blank" href="https://fontawesome.com/v5/search?m=free">Click Here</a> for select icon. for eg:-fab fa-pinterest-p','smart-cleaning')
));
$wp_customize->add_setting('smart_cleaning_pintrest_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('smart_cleaning_pintrest_url',array(
'label' => esc_html__('Pinterest Link','smart-cleaning'),
'section' => 'smart_cleaning_social_link',
'setting' => 'smart_cleaning_pintrest_url',
'type' => 'url'
));
// Pro Version
$wp_customize->add_setting( 'pro_version_social_setting', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_social_setting', array(
'section' => 'smart_cleaning_social_link',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
//Menu Settings
$wp_customize->add_section('smart_cleaning_menu_settings',array(
'title' => esc_html__('Menus Settings','smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_menu_font_size',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_menu_font_size',array(
'label' => esc_html__('Menu Font Size','smart-cleaning'),
'section' => 'smart_cleaning_menu_settings',
'type' => 'number'
));
$wp_customize->add_setting('smart_cleaning_nav_menu_text_transform',array(
'default'=> 'Uppercase',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_nav_menu_text_transform',array(
'type' => 'radio',
'label' => esc_html__('Menu Text Transform','smart-cleaning'),
'choices' => array(
'Uppercase' => __('Uppercase','smart-cleaning'),
'Capitalize' => __('Capitalize','smart-cleaning'),
'Lowercase' => __('Lowercase','smart-cleaning'),
),
'section'=> 'smart_cleaning_menu_settings',
));
$wp_customize->add_setting('smart_cleaning_nav_menu_font_weight',array(
'default'=> '400',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_nav_menu_font_weight',array(
'type' => 'number',
'label' => esc_html__('Menu Font Weight','smart-cleaning'),
'input_attrs' => array(
'step' => 100,
'min' => 100,
'max' => 1000,
),
'section'=> 'smart_cleaning_menu_settings',
));
//Slider
$wp_customize->add_section('smart_cleaning_top_slider',array(
'title' => esc_html__('Slider Option','smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_blog_slider_setting', array(
'default' => 1,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_blog_slider_setting',array(
'label' => __( 'Enable Disable Slider', 'smart-cleaning' ),
'section' => 'smart_cleaning_top_slider',
'settings' => 'smart_cleaning_blog_slider_setting',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_slider_loop', array(
'default' => 1,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_slider_loop',array(
'label' => __( 'Enable Disable Slider Loop', 'smart-cleaning' ),
'section' => 'smart_cleaning_top_slider',
'settings' => 'smart_cleaning_slider_loop',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_slider_title_setting', array(
'default' => 1,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_slider_title_setting',array(
'label' => __( 'Enable Disable Slider Title', 'smart-cleaning' ),
'section' => 'smart_cleaning_top_slider',
'settings' => 'smart_cleaning_slider_title_setting',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_slider_content_setting', array(
'default' => 1,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_slider_content_setting',array(
'label' => __( 'Enable Disable Slider Content', 'smart-cleaning' ),
'section' => 'smart_cleaning_top_slider',
'settings' => 'smart_cleaning_slider_content_setting',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_slider_button_setting', array(
'default' => 1,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_slider_button_setting',array(
'label' => __( 'Enable Disable Slider Button', 'smart-cleaning' ),
'section' => 'smart_cleaning_top_slider',
'settings' => 'smart_cleaning_slider_button_setting',
'type' => 'checkbox',
)));
for ( $smart_cleaning_count = 1; $smart_cleaning_count <= 3; $smart_cleaning_count++ ) {
$wp_customize->add_setting( 'smart_cleaning_top_slider_page' . $smart_cleaning_count, array(
'default' => '',
'sanitize_callback' => 'smart_cleaning_sanitize_dropdown_pages'
) );
$wp_customize->add_control( 'smart_cleaning_top_slider_page' . $smart_cleaning_count, array(
'label' => __( 'Select Slide Page', 'smart-cleaning' ),
'description' => __('Slider image size (1400 x 550)','smart-cleaning'),
'section' => 'smart_cleaning_top_slider',
'type' => 'dropdown-pages'
) );
}
$wp_customize->add_setting('smart_cleaning_slider_content_layout',array(
'default'=> 'Left',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_slider_content_layout',array(
'type' => 'radio',
'label' => esc_html__('Slider Content Layout','smart-cleaning'),
'choices' => array(
'Left' => __('Left','smart-cleaning'),
'Center' => __('Center','smart-cleaning'),
'Right' => __('Right','smart-cleaning'),
),
'section'=> 'smart_cleaning_top_slider',
));
$wp_customize->add_setting('smart_cleaning_slider_excerpt_length',array(
'sanitize_callback' => 'smart_cleaning_sanitize_number_range',
'default' => 10,
));
$wp_customize->add_control('smart_cleaning_slider_excerpt_length',array(
'label' => esc_html__('Slider Excerpt Length', 'smart-cleaning'),
'section' => 'smart_cleaning_top_slider',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
));
//Slider button text
$wp_customize->add_setting('smart_cleaning_slider_button_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_slider_button_text',array(
'label' => __('Slider Button Text','smart-cleaning'),
'section'=> 'smart_cleaning_top_slider',
'type'=> 'text'
));
$wp_customize->add_setting('smart_cleaning_slide_day',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_slide_day',array(
'label' => esc_html__('Days','smart-cleaning'),
'description' => esc_html__('Ex: Friday - Sunday','smart-cleaning'),
'section' => 'smart_cleaning_top_slider',
'setting' => 'smart_cleaning_slide_day',
'type' => 'text'
));
$wp_customize->add_setting('smart_cleaning_slide_time',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_slide_time',array(
'label' => esc_html__('Time','smart-cleaning'),
'description' => esc_html__('Ex: 9:00am to 9:00pm','smart-cleaning'),
'section' => 'smart_cleaning_top_slider',
'setting' => 'smart_cleaning_slide_time',
'type' => 'text'
));
//Slider Image Opacity
$wp_customize->add_setting('smart_cleaning_slider_opacity_setting', array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_slider_opacity_setting',array(
'label' => __( 'Show Image Opacity', 'smart-cleaning' ),
'section' => 'smart_cleaning_top_slider',
'type' => 'checkbox',
)));
$wp_customize->add_setting( 'smart_cleaning_image_opacity_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'smart_cleaning_image_opacity_color', array(
'label' => __('Slider Image Opacity Color', 'smart-cleaning'),
'section' => 'smart_cleaning_top_slider',
'settings' => 'smart_cleaning_image_opacity_color',
)));
$wp_customize->add_setting('smart_cleaning_slider_opacity',array(
'default'=> '0.5',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_slider_opacity',array(
'type' => 'select',
'label' => esc_html__('Slider Image Opacity','smart-cleaning'),
'choices' => array(
'0' => '0',
'0.1' => '0.1',
'0.2' => '0.2',
'0.3' => '0.3',
'0.4' => '0.4',
'0.5' => '0.5',
'0.6' => '0.6',
'0.7' => '0.7',
'0.8' => '0.8',
'0.9' => '0.9',
'1' => '1',
),
'section'=> 'smart_cleaning_top_slider',
));
//Slider height
$wp_customize->add_setting('smart_cleaning_slider_img_height',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('smart_cleaning_slider_img_height',array(
'label' => __('Slider Height','smart-cleaning'),
'description' => __('Add the slider height in px(eg. 500px).','smart-cleaning'),
'input_attrs' => array(
'placeholder' => __( '500px', 'smart-cleaning' ),
),
'section'=> 'smart_cleaning_top_slider',
'type'=> 'text'
));
// Pro Version
$wp_customize->add_setting( 'pro_version_slider_setting', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_slider_setting', array(
'section' => 'smart_cleaning_top_slider',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
// Special Services
$wp_customize->add_section('smart_cleaning_featured_category',array(
'title' => esc_html__('Our Services','smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_blog_service_setting', array(
'default' => 1,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'smart_cleaning_blog_service_setting',array(
'label' => __( 'Enable Disable Services', 'smart-cleaning' ),
'section' => 'smart_cleaning_featured_category',
'settings' => 'smart_cleaning_blog_service_setting',
'type' => 'checkbox',
)));
$wp_customize->add_setting('smart_cleaning_featured_category_title', array(
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control('smart_cleaning_featured_category_title', array(
'label' => __('Section Title', 'smart-cleaning'),
'section' => 'smart_cleaning_featured_category',
'type' => 'text',
));
$categories = get_categories();
$cat_post = array();
$cat_post[]= 'select';
$i = 0;
foreach($categories as $category){
if($i==0){
$default = $category->slug;
$i++;
}
$cat_post[$category->slug] = $category->name;
}
$wp_customize->add_setting('smart_cleaning_featured_category_1',array(
'default' => 'select',
'sanitize_callback' => 'smart_cleaning_sanitize_choices',
));
$wp_customize->add_control('smart_cleaning_featured_category_1',array(
'type' => 'select',
'choices' => $cat_post,
'label' => __('Select Category to display box post','smart-cleaning'),
'section' => 'smart_cleaning_featured_category',
));
// Pro Version
$wp_customize->add_setting( 'pro_version_featured_setting', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_featured_setting', array(
'section' => 'smart_cleaning_featured_category',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
// Footer
$wp_customize->add_section('smart_cleaning_site_footer_section', array(
'title' => esc_html__('Footer', 'smart-cleaning'),
));
$wp_customize->add_setting('smart_cleaning_show_hide_footer',array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control('smart_cleaning_show_hide_footer',array(
'type' => 'checkbox',
'label' => __('Show / Hide Footer','smart-cleaning'),
'section' => 'smart_cleaning_site_footer_section',
'priority' => 1,
));
$wp_customize->add_setting('smart_cleaning_footer_background_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'smart_cleaning_footer_background_color', array(
'label' => __('Footer Background Color', 'smart-cleaning'),
'section' => 'smart_cleaning_site_footer_section',
)));
$wp_customize->add_setting('smart_cleaning_footer_bg_image',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
));
$wp_customize->add_control( new WP_Customize_Image_Control($wp_customize,'smart_cleaning_footer_bg_image',array(
'label' => __('Footer Background Image','smart-cleaning'),
'section' => 'smart_cleaning_site_footer_section',
)));
$wp_customize->add_setting('smart_cleaning_footer_bg_image_position',array(
'default'=> 'scroll',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_footer_bg_image_position',array(
'type' => 'select',
'label' => __('Footer Background Image Position','smart-cleaning'),
'choices' => array(
'fixed' => __('fixed','smart-cleaning'),
'scroll' => __('scroll','smart-cleaning'),
),
'section'=> 'smart_cleaning_site_footer_section',
));
$wp_customize->add_setting('smart_cleaning_footer_widget_heading_alignment',array(
'default' => 'Left',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_footer_widget_heading_alignment',array(
'type' => 'select',
'label' => __('Footer Widget Heading Alignment','smart-cleaning'),
'section' => 'smart_cleaning_site_footer_section',
'choices' => array(
'Left' => __('Left','smart-cleaning'),
'Center' => __('Center','smart-cleaning'),
'Right' => __('Right','smart-cleaning')
),
) );
$wp_customize->add_setting('smart_cleaning_footer_widget_content_alignment',array(
'default' => 'Left',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_footer_widget_content_alignment',array(
'type' => 'select',
'label' => __('Footer Widget Content Alignment','smart-cleaning'),
'section' => 'smart_cleaning_site_footer_section',
'choices' => array(
'Left' => __('Left','smart-cleaning'),
'Center' => __('Center','smart-cleaning'),
'Right' => __('Right','smart-cleaning')
),
) );
$wp_customize->add_setting('smart_cleaning_show_hide_copyright',array(
'default' => true,
'sanitize_callback' => 'smart_cleaning_sanitize_checkbox'
));
$wp_customize->add_control('smart_cleaning_show_hide_copyright',array(
'type' => 'checkbox',
'label' => __('Show / Hide Copyright','smart-cleaning'),
'section' => 'smart_cleaning_site_footer_section',
));
$wp_customize->add_setting('smart_cleaning_footer_text_setting', array(
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control('smart_cleaning_footer_text_setting', array(
'label' => __('Replace the footer text', 'smart-cleaning'),
'section' => 'smart_cleaning_site_footer_section',
'type' => 'text',
));
$wp_customize->add_setting('smart_cleaning_copyright_content_alignment',array(
'default' => 'Center',
'transport' => 'refresh',
'sanitize_callback' => 'smart_cleaning_sanitize_choices'
));
$wp_customize->add_control('smart_cleaning_copyright_content_alignment',array(
'type' => 'select',
'label' => __('Copyright Content Alignment','smart-cleaning'),
'section' => 'smart_cleaning_site_footer_section',
'choices' => array(
'Left' => __('Left','smart-cleaning'),
'Center' => __('Center','smart-cleaning'),
'Right' => __('Right','smart-cleaning')
),
) );
$wp_customize->add_setting('smart_cleaning_copyright_background_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'smart_cleaning_copyright_background_color', array(
'label' => __('Copyright Background Color', 'smart-cleaning'),
'section' => 'smart_cleaning_site_footer_section',
)));
// Pro Version
$wp_customize->add_setting( 'pro_version_footer_setting', array(
'sanitize_callback' => 'Smart_Cleaning_sanitize_custom_control'
));
$wp_customize->add_control( new Smart_Cleaning_Customize_Pro_Version ( $wp_customize,'pro_version_footer_setting', array(
'section' => 'smart_cleaning_site_footer_section',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'smart-cleaning' ),
'description' => esc_url( SMART_CLEANING_URL ),
'priority' => 100
)));
}
add_action('customize_register', 'smart_cleaning_customize_register');
/**
* Render the site title for the selective refresh partial.
*
* @return void
*/
function smart_cleaning_customize_partial_blogname(){
bloginfo('name');
}
/**
* Render the site tagline for the selective refresh partial.
*
* @return void
*/
function smart_cleaning_customize_partial_blogdescription(){
bloginfo('description');
}
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function smart_cleaning_customize_preview_js(){
wp_enqueue_script('smart-cleaning-customizer', esc_url(get_template_directory_uri()) . '/assets/js/customizer.js', array('customize-preview'), '20151215', true);
}
add_action('customize_preview_init', 'smart_cleaning_customize_preview_js');
/*
** Load dynamic logic for the customizer controls area.
*/
function smart_cleaning_panels_js() {
wp_enqueue_style( 'smart-cleaning-customizer-layout-css', get_theme_file_uri( '/assets/css/customizer-layout.css' ) );
wp_enqueue_script( 'smart-cleaning-customize-layout', get_theme_file_uri( '/assets/js/customize-layout.js' ), array(), '1.2', true );
}
add_action( 'customize_controls_enqueue_scripts', 'smart_cleaning_panels_js' );