get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; $wp_customize->get_setting( 'background_color' )->transport = 'postMessage'; $wp_customize->get_setting('custom_logo')->transport = 'refresh'; /** * Helper files */ require SPINTECH_PARENT_INC_DIR . '/customizer/controls/font-control.php'; require SPINTECH_PARENT_INC_DIR . '/customizer/sanitization.php'; } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function spintech_customize_preview_js() { wp_enqueue_script( 'spintech-customizer', SPINTECH_PARENT_INC_URI . '/customizer/assets/js/customizer-preview.js', array( 'customize-preview' ), '20151215', true ); } // Include customizer customizer settings. function spintech_customizer_settings() { require SPINTECH_PARENT_INC_DIR . '/customizer/customizer-options/spintech-header.php'; require SPINTECH_PARENT_INC_DIR . '/customizer/customizer-options/spintech-blog.php'; require SPINTECH_PARENT_INC_DIR . '/customizer/customizer-options/spintech-general.php'; require SPINTECH_PARENT_INC_DIR . '/customizer/customizer-options/spintech-footer.php'; } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ Spintech_Customizer::get_instance();