add_section( 'alley_home_services_customize_register_footer_options_section', array( 'title' => esc_html__( 'Footer Options', 'alley-home-services' ), 'description' => esc_html__( 'Footer widget title Fonts :', 'alley-home-services' ), 'priority' => 18, ) ); if ( alley_home_services_set_pro_active() ) { $wp_customize->add_setting( 'footer_copyright_text', array( 'transport' => 'postMessage', 'sanitize_callback' => 'wp_kses_post', 'default' => '' ) ); $wp_customize->add_control( 'copyright_text', array( 'label' => esc_html__( 'Copyright :', 'alley-home-services' ), 'section' => 'alley_home_services_customize_register_footer_options_section', 'settings' => 'footer_copyright_text', 'type'=> 'textarea', ) ); $wp_customize->selective_refresh->add_partial('footer_copyright_text', array( 'selector' => 'footer .site-info', // You can also select a css class )); } }