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