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 AROMATIC_PARENT_INC_DIR . '/customizer/sanitization.php'; } /** * Admin Script */ function aromatic_admin_script() { wp_enqueue_style('aromatic-admin-style', get_template_directory_uri() . '/inc/customizer/assets/css/admin.css'); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function aromatic_customize_preview_js() { wp_enqueue_script( 'aromatic-customizer', AROMATIC_PARENT_INC_URI . '/customizer/assets/js/customizer-preview.js', array( 'customize-preview' ), '20151215', true ); } // Include customizer customizer settings. function aromatic_customizer_settings() { require AROMATIC_PARENT_INC_DIR . '/customizer/customizer-options/aromatic-header.php'; require AROMATIC_PARENT_INC_DIR . '/customizer/customizer-options/aromatic-footer.php'; require AROMATIC_PARENT_INC_DIR . '/customizer/customizer-options/aromatic-blog.php'; require AROMATIC_PARENT_INC_DIR . '/customizer/customizer-options/aromatic-general.php'; require AROMATIC_PARENT_INC_DIR . '/customizer/customizer-options/aromatic_recommended_plugin.php'; } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ Aromatic_Customizer::get_instance();