File "cta.php"

Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/themes/edufication/inc/customizer/sections/cta.php
File size: 2.84 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Call to Action Section options
 *
 * @package Theme Palace
 * @subpackage Edufication
 * @since Edufication 1.0.0
 */

// Add Call to Action section
$wp_customize->add_section( 'edufication_cta_section', array(
	'title'             => esc_html__( 'Call to Action','edufication' ),
	'description'       => esc_html__( 'Call to Action Section options.', 'edufication' ),
	'panel'             => 'edufication_front_page_panel',
) );

// Call to Action content enable control and setting
$wp_customize->add_setting( 'edufication_theme_options[cta_section_enable]', array(
	'default'			=> 	$options['cta_section_enable'],
	'sanitize_callback' => 'edufication_sanitize_switch_control',
) );

$wp_customize->add_control( new Edufication_Switch_Control( $wp_customize, 'edufication_theme_options[cta_section_enable]', array(
	'label'             => esc_html__( 'Call to Action Section Enable', 'edufication' ),
	'section'           => 'edufication_cta_section',
	'on_off_label' 		=> edufication_switch_options(),
) ) );

if ( isset( $wp_customize->selective_refresh ) ) {
    $wp_customize->selective_refresh->add_partial( 'edufication_theme_options[cta_section_enable]', array(
		'selector'            => '#call-to-action .tooltiptext',
		'settings'            => 'edufication_theme_options[cta_section_enable]',
    ) );
}

// cta pages drop down chooser control and setting
$wp_customize->add_setting( 'edufication_theme_options[cta_content_page]', array(
	'sanitize_callback' => 'edufication_sanitize_page',
) );

$wp_customize->add_control( new Edufication_Dropdown_Chooser( $wp_customize, 'edufication_theme_options[cta_content_page]', array(
	'label'             => esc_html__( 'Select Page', 'edufication' ),
	'section'           => 'edufication_cta_section',
	'choices'			=> edufication_page_choices(),
	'active_callback'	=> 'edufication_is_cta_section_enable',
) ) );

// cta btn title setting and control
$wp_customize->add_setting( 'edufication_theme_options[cta_btn_title]', array(
	'sanitize_callback' => 'sanitize_text_field',
	'default'			=> $options['cta_btn_title'],
	'transport'			=> 'postMessage',
) );

$wp_customize->add_control( 'edufication_theme_options[cta_btn_title]', array(
	'label'           	=> esc_html__( 'Button Label', 'edufication' ),
	'section'        	=> 'edufication_cta_section',
	'active_callback' 	=> 'edufication_is_cta_section_enable',
	'type'				=> 'text',
) );

// Abort if selective refresh is not available.
if ( isset( $wp_customize->selective_refresh ) ) {
    $wp_customize->selective_refresh->add_partial( 'edufication_theme_options[cta_btn_title]', array(
		'selector'            => '#call-to-action .wrapper .buttons a.btn-transparent',
		'settings'            => 'edufication_theme_options[cta_btn_title]',
		'container_inclusive' => false,
		'fallback_refresh'    => true,
		'render_callback'     => 'edufication_cta_btn_title_partial',
    ) );
}