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' => 'minimal_blocks_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'minimal_blocks_customize_partial_blogdescription', ) ); } /*Load customizer options.*/ require get_template_directory() . '/inc/customizer/options.php'; // Register custom section types. $wp_customize->register_section_type( 'Minimal_Blocks_Customize_Section_Upsell' ); // Register sections. $wp_customize->add_section( new Minimal_Blocks_Customize_Section_Upsell( $wp_customize, 'theme_upsell', array( 'title' => esc_html__( 'Minimal Blocks Pro', 'minimal-blocks' ), 'pro_text' => esc_html__( 'Upgrade To Pro', 'minimal-blocks' ), 'pro_url' => 'http://www.thememattic.com/theme/minimal-blocks-pro/', 'priority' => 1, ) ) ); } add_action( 'customize_register', 'minimal_blocks_customize_register' ); /** * Render the site title for the selective refresh partial. * * @return void */ function minimal_blocks_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function minimal_blocks_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function minimal_blocks_customize_preview_js() { wp_enqueue_script( 'minimal-blocks-themecustomizer', get_template_directory_uri() . '/assets/thememattic/js/customizer.js', array( 'jquery','customize-preview' ), '', true ); } add_action( 'customize_preview_init', 'minimal_blocks_customize_preview_js' ); /** * Customizer control scripts and styles. * * @since 1.0.0 */ function minimal_blocks_customizer_control_scripts(){ wp_enqueue_style('minimal-blocks-customizer-css', get_template_directory_uri() . '/assets/thememattic/css/admin.css'); wp_enqueue_script( 'minimal-blocks-customize-controls', get_template_directory_uri() . '/assets/thememattic/js/customizer-admin.js', array( 'customize-controls' ) ); } add_action('customize_controls_enqueue_scripts', 'minimal_blocks_customizer_control_scripts', 0);