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 CALLCENTER_PARENT_INC_DIR . '/customizer/sanitization.php'; } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function callcenter_customize_preview_js() { wp_enqueue_script( 'callcenter-customizer', CALLCENTER_PARENT_INC_URI . '/customizer/assets/js/customizer-preview.js', array( 'customize-preview' ), '20151215', true ); } function callcenter_customizer_script() { wp_enqueue_script( 'callcenter-customizer-section', CALLCENTER_PARENT_INC_URI .'/customizer/assets/js/customizer-section.js', array("jquery"),'', true ); } // Include customizer customizer settings. function callcenter_customizer_settings() { require CALLCENTER_PARENT_INC_DIR . '/customizer/customizer-options/callcenter-header.php'; require CALLCENTER_PARENT_INC_DIR . '/customizer/customizer-options/callcenter-frontpage.php'; require CALLCENTER_PARENT_INC_DIR . '/customizer/customizer-options/callcenter-general.php'; require CALLCENTER_PARENT_INC_DIR . '/customizer/customizer-options/callcenter-footer.php'; require CALLCENTER_PARENT_INC_DIR . '/customizer/customizer-options/callcenter_customizer_import_data.php'; require CALLCENTER_PARENT_INC_DIR . '/customizer/customizer-pro/class-customize.php'; } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ Callcenter_Customizer::get_instance();