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