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/footer.php

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

// Footer Section
$wp_customize->add_section( 'businesszen_section_footer',
	array(
		'title'      			=> esc_html__( 'Footer Options', 'businesszen' ),
		'priority'   			=> 900,
		'panel'      			=> 'businesszen_theme_options_panel',
	)
);

// footer text
$wp_customize->add_setting( 'businesszen_theme_options[copyright_text]',
	array(
		'default'       		=> $options['copyright_text'],
		'sanitize_callback'		=> 'businesszen_santize_allow_tag',
		'transport'				=> 'postMessage',
	)
);
$wp_customize->add_control( 'businesszen_theme_options[copyright_text]',
    array(
		'label'      			=> esc_html__( 'Copyright Text', 'businesszen' ),
		'section'    			=> 'businesszen_section_footer',
		'type'		 			=> 'textarea',
    )
);

// Abort if selective refresh is not available.
if ( isset( $wp_customize->selective_refresh ) ) {
    $wp_customize->selective_refresh->add_partial( 'businesszen_theme_options[copyright_text]', array(
		'selector'            => '.site-info span',
		'settings'            => 'businesszen_theme_options[copyright_text]',
		'container_inclusive' => false,
		'fallback_refresh'    => true,
		'render_callback'     => 'businesszen_copyright_text_partial',
    ) );
}

// scroll top visible
$wp_customize->add_setting( 'businesszen_theme_options[scroll_top_visible]',
	array(
		'default'       		=> $options['scroll_top_visible'],
		'sanitize_callback' => 'businesszen_sanitize_switch_control',
	)
);
$wp_customize->add_control( new Businesszen_Switch_Control( $wp_customize, 'businesszen_theme_options[scroll_top_visible]',
    array(
		'label'      			=> esc_html__( 'Display Scroll Top Button', 'businesszen' ),
		'section'    			=> 'businesszen_section_footer',
		'on_off_label' 		=> businesszen_switch_options(),
    )
) );

Copyright © 2019 by b0y-101