Current File : /pages/54/47/d0016649/home/htdocs/cd24/wp-content/themes/digital-download/inc/customizer/footer.php |
<?php
/**
* Digital Download Footer Setting
*
* @package Digital_Download
*/
function digital_download_customize_register_footer( $wp_customize ) {
$wp_customize->add_section(
'footer_settings',
array(
'title' => __( 'Footer Settings', 'digital-download' ),
'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', 'digital-download' ),
'section' => 'footer_settings',
'type' => 'textarea',
)
);
$wp_customize->selective_refresh->add_partial( 'footer_copyright', array(
'selector' => '.site-info .copyright',
'render_callback' => 'digital_download_get_footer_copyright',
) );
}
add_action( 'customize_register', 'digital_download_customize_register_footer' );