File: //home/igennie.co.uk/public_html/wp-content/themes/blossom-coach/inc/customizer/footer.php
<?php
/**
* Blossom Coach Footer Setting
*
* @package Blossom_Coach
*/
function blossom_coach_customize_register_footer( $wp_customize ) {
$wp_customize->add_section(
'footer_settings',
array(
'title' => __( 'Footer Settings', 'blossom-coach' ),
'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', 'blossom-coach' ),
'section' => 'footer_settings',
'type' => 'textarea',
)
);
$wp_customize->selective_refresh->add_partial( 'footer_copyright', array(
'selector' => '.bottom-footer .copyright>span',
'render_callback' => 'blossom_coach_get_footer_copyright',
) );
/** Footer */
/** Note */
$wp_customize->add_setting(
'footer_text',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post'
)
);
$wp_customize->add_control(
new Blossom_Coach_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 ', 'blossom-coach' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://blossomthemes.com/wordpress-themes/blossom-coach-pro/?utm_source=blossom_coach&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
)
)
);
$wp_customize->add_setting(
'footer_settings',
array(
'default' => 'one',
'sanitize_callback' => 'blossom_coach_sanitize_radio'
)
);
$wp_customize->add_control(
new Blossom_Coach_Radio_Image_Control(
$wp_customize,
'footer_settings',
array(
'section' => 'footer_settings',
'choices' => array(
'one' => get_template_directory_uri() . '/images/footer.png',
),
)
)
);
}
add_action( 'customize_register', 'blossom_coach_customize_register_footer' );