get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'allure_news_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'allure_news_customize_partial_blogdescription', ) ); } /** * Load Customizer Settings * * All the settings for appearance > customize */ require get_template_directory() . '/candidthemes/customizer/customizer-main-panel.php'; /*Getting Home Page Widget Area on Main Panel*/ $allure_news_home_section = $wp_customize->get_section( 'sidebar-widgets-allure-news-home-widget-area' ); if ( ! empty( $allure_news_home_section ) ) { $allure_news_home_section->panel = ''; $allure_news_home_section->title = esc_html__( 'Home Page Widget Area ', 'allure-news' ); $allure_news_home_section->priority = 30; } } add_action( 'customize_register', 'allure_news_customize_register' ); /** * Render the site title for the selective refresh partial. * * @return void */ function allure_news_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function allure_news_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function allure_news_customize_preview_js() { wp_enqueue_script( 'allure-news-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '1.0.0', true ); } add_action( 'customize_preview_init', 'allure_news_customize_preview_js' ); /** * Customizer Styles */ function allure_news_customizer_css() { wp_enqueue_style('allure-news-customizer-css', get_template_directory_uri() . '/candidthemes/assets/css/customizer-style.css', array(), '1.0.0'); } add_action( 'customize_controls_enqueue_scripts', 'allure_news_customizer_css' );