File: /home/predezso/alwaysgaia.com/wp-content/themes/vilva/inc/customizer/footer.php
<?php
/**
* Footer Setting
*
* @package Vilva
*/
function vilva_customize_register_footer( $wp_customize ) {
$wp_customize->add_section(
'footer_settings',
array(
'title' => __( 'Footer Settings', 'vilva' ),
'priority' => 199,
'capability' => 'edit_theme_options',
)
);
/** Footer Copyright */
$wp_customize->add_setting(
'footer_copyright',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
'transport' => 'postMessage'
)
);
$wp_customize->add_control(
'footer_copyright',
array(
'label' => __( 'Footer Copyright Text', 'vilva' ),
'section' => 'footer_settings',
'type' => 'textarea',
)
);
$wp_customize->selective_refresh->add_partial( 'footer_copyright', array(
'selector' => '.footer-b .copyright>span',
'render_callback' => 'vilva_get_footer_copyright',
) );
/** Footer */
if( ! function_exists( 'blossomthemes_fc_get_footer_copyright' ) ){
/** Note */
$wp_customize->add_setting(
'footer_text',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post'
)
);
$wp_customize->add_control(
new Vilva_Note_Control(
$wp_customize,
'footer_text',
array(
'section' => 'footer_settings',
'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'vilva' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://blossomthemes.com/wordpress-themes/vilva-pro/?utm_source=vilva&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
)
)
);
$wp_customize->add_setting(
'footer_settings',
array(
'default' => 'one',
'sanitize_callback' => 'vilva_sanitize_radio'
)
);
$wp_customize->add_control(
new Vilva_Radio_Image_Control(
$wp_customize,
'footer_settings',
array(
'section' => 'footer_settings',
'feat_class' => 'upg-to-pro',
'choices' => array(
'one' => get_template_directory_uri() . '/images/pro/footer.png',
),
)
)
);
}
}
add_action( 'customize_register', 'vilva_customize_register_footer' );