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 BAKERYSTORE_PARENT_INC_DIR . '/customizer/sanitization.php'; } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function bakerystore_customize_preview_js() { wp_enqueue_script( 'bakerystore-customizer', BAKERYSTORE_PARENT_INC_URI . '/customizer/assets/js/customizer-preview.js', array( 'customize-preview' ), '20151215', true ); } function bakerystore_customizer_script() { wp_enqueue_script( 'bakerystore-customizer-section', BAKERYSTORE_PARENT_INC_URI .'/customizer/assets/js/customizer-section.js', array("jquery"),'', true ); } // Include customizer customizer settings. function bakerystore_customizer_settings() { require BAKERYSTORE_PARENT_INC_DIR . '/customizer/customizer-options/bakerystore-header.php'; require BAKERYSTORE_PARENT_INC_DIR . '/customizer/customizer-options/bakerystore-frontpage.php'; require BAKERYSTORE_PARENT_INC_DIR . '/customizer/customizer-options/bakerystore-footer.php'; require BAKERYSTORE_PARENT_INC_DIR . '/customizer/customizer-pro/class-customize.php'; } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ bakerystore_Customizer::get_instance();