selective_refresh ) ? 'postMessage' : 'refresh'; // Footer Panel // $wp_customize->add_panel( 'footer_section', array( 'priority' => 34, 'capability' => 'edit_theme_options', 'title' => __('Footer', 'bakery-store'), ) ); // Footer Bottom // $wp_customize->add_section( 'footer_bottom', array( 'title' => __('Footer Bottom','bakery-store'), 'panel' => 'footer_section', 'priority' => 3, ) ); // Footer Copyright Head $wp_customize->add_setting( 'footer_btm_copy_head' ,array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bakerystore_sanitize_text', 'priority' => 3, ) ); $wp_customize->add_control( 'footer_btm_copy_head', array( 'type' => 'hidden', 'label' => __('Copyright','bakery-store'), 'section' => 'footer_bottom', ) ); // Footer Copyright $bakerystore_foo_copy = esc_html__('Copyright © [current_year] [site_title] | Powered by [theme_author]', 'bakery-store' ); $wp_customize->add_setting( 'footer_copyright', array( 'default' => $bakerystore_foo_copy, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 4, ) ); $wp_customize->add_control( 'footer_copyright', array( 'label' => __('CopyRight','bakery-store'), 'section' => 'footer_bottom', 'type' => 'textarea', 'transport' => $selective_refresh, ) ); } add_action( 'customize_register', 'bakerystore_footer' ); // Footer selective refresh function bakerystore_footer_partials( $wp_customize ){ // footer_copyright $wp_customize->selective_refresh->add_partial( 'footer_copyright', array( 'selector' => '.copy-right .copyright-text', 'settings' => 'footer_copyright', 'render_callback' => 'bakerystore_footer_copyright_render_callback', ) ); } add_action( 'customize_register', 'bakerystore_footer_partials' ); // copyright_content function bakerystore_footer_copyright_render_callback() { return get_theme_mod( 'footer_copyright' ); }