get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; // Load sanitize functions. include get_template_directory() . '/inc/sanitize.php'; // Load upsell functions. // include get_template_directory() . '/inc/customizer/upsell/upsell-section.php'; // $wp_customize->register_section_type( 'aem_slate_Customize_Upsell_Section' ); // // Register section. // $wp_customize->add_section( // new aem_slate_Customize_Upsell_Section( // $wp_customize, // 'theme_upsell', // array( // 'title' => esc_html__( 'AEM Slate Extended', 'aem-slate' ), // 'pro_text' => esc_html__( 'Buy Pro', 'aem-slate' ), // 'pro_url' => 'https://fahimm.com/downloads/aem-slate-pro/', // 'priority' => 10, // ) // ) // ); // Load theme options. include get_template_directory() . '/inc/customizer/aem-slate-theme-options.php'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'aem_slate_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-identity-description', 'render_callback' => 'aem_slate_customize_partial_blogdescription', ) ); } } add_action( 'customize_register', 'aem_slate_customize_register' ); /** * Render the site title for the selective refresh partial. * * @return void */ function aem_slate_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function aem_slate_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function aem_slate_customize_preview_js() { wp_enqueue_script( 'aem-slate-customizer', get_template_directory_uri() . '/assets/js/customizer.js', array( 'customize-preview' ), '20230101', true ); } add_action( 'customize_preview_init', 'aem_slate_customize_preview_js' ); /** * Customizer control scripts and styles. * * @since 1.0.0 */ function aem_slate_customizer_control_scripts() { wp_enqueue_style( 'aem-slate-customize-controls', get_template_directory_uri() . '/assets/css/customize-controls.css', '', '1.0.0' ); wp_enqueue_script( 'aem-slate-customize-controls', get_template_directory_uri() . '/assets/js/customize-controls.js', array( 'customize-controls' ), '1.0.0', true ); } add_action( 'customize_controls_enqueue_scripts', 'aem_slate_customizer_control_scripts', 0 );