selective_refresh ) ) { return; } //site mode switcher -- Header Settings > Main Area $wp_customize->selective_refresh->add_partial( 'azure_news_header_site_mode_switch_enable', array( 'selector' => '#masthead #azure-news-site-mode-wrap', 'render_callback' => 'azure_news_site_mode_switcher', ) ); //custom button label -- Header Settings > Main Area $wp_customize->selective_refresh->add_partial( 'azure_news_header_custom_button_label', array( 'selector' => '#masthead .custom-button-wrap a', 'render_callback' => 'azure_news_customize_partial_custom_button_label', ) ); //news ticker label -- Header Settings > News Ticker $wp_customize->selective_refresh->add_partial( 'azure_news_header_ticker_label', array( 'selector' => '.header-news-ticker-wrapper .news-ticker-label span.label-text', 'render_callback' => 'azure_news_customize_partial_ticker_label', ) ); //copyright info -- Footer Settings > Bottom Area $wp_customize->selective_refresh->add_partial( 'azure_news_footer_copyright_info', array( 'selector' => '.site-info .copyright-content', 'render_callback' => 'azure_news_customize_partial_copyright_info', ) ); } endif; add_action( 'customize_register', 'azure_news_customizer_selective_refresh' ); /** * Render the value of custom button label for the selective refresh partial. * * @return void */ function azure_news_customize_partial_custom_button_label() { $custom_button_label = azure_news_get_customizer_option_value( 'azure_news_header_custom_button_label' ); return ( ' '.$custom_button_label ); } /** * Render the value of ticker label for the selective refresh partial. * * @return void */ function azure_news_customize_partial_ticker_label() { $ticker_label = azure_news_get_customizer_option_value( 'azure_news_header_ticker_label' ); return $ticker_label; } /** * Render the value of copyright info for the selective refresh partial. * * @return void */ function azure_news_customize_partial_copyright_info() { $copyright_info = azure_news_get_customizer_option_value( 'azure_news_footer_copyright_info' ); return $copyright_info; }