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 STOREBIZ_PARENT_INC_DIR . '/customizer/controls/font-control.php';; require STOREBIZ_PARENT_INC_DIR . '/customizer/sanitization.php'; } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function storebiz_customize_preview_js() { wp_enqueue_script( 'storebiz-customizer', STOREBIZ_PARENT_INC_URI . '/customizer/assets/js/customizer-preview.js', array( 'customize-preview' ), '20151215', true ); } // Include customizer customizer settings. function storebiz_customizer_settings() { require STOREBIZ_PARENT_INC_DIR . '/customizer/customizer-options/storebiz-header.php'; require STOREBIZ_PARENT_INC_DIR . '/customizer/customizer-options/storebiz-general.php'; require STOREBIZ_PARENT_INC_DIR . '/customizer/customizer-options/storebiz-blog.php'; require STOREBIZ_PARENT_INC_DIR . '/customizer/customizer-options/storebiz-footer.php'; require STOREBIZ_PARENT_INC_DIR . '/customizer/customizer-options/storebiz_recommended_plugin.php'; require STOREBIZ_PARENT_INC_DIR . '/customizer/customizer-options/storebiz_customizer_import_data.php'; require STOREBIZ_PARENT_INC_DIR . '/customizer/customizer-pro/class-customize.php'; } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ Storebiz_Customizer::get_instance();