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 GRADIANT_PARENT_INC_DIR . '/custom-controls/font-control.php'; require GRADIANT_PARENT_INC_DIR . '/sanitization.php'; } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function gradiant_customize_preview_js() { wp_enqueue_script( 'gradiant-customizer', GRADIANT_PARENT_URI . '/assets/js/customizer-preview.js', array( 'customize-preview' ), '20151215', true ); } function gradiant_customizer_script() { wp_enqueue_script( 'gradiant-customizer-section', GRADIANT_PARENT_URI .'/assets/js/customizer-section.js', array("jquery"),'', true ); } // Include customizer customizer settings. function gradiant_customizer_settings() { require GRADIANT_PARENT_INC_DIR . '/customize/gradiant-header.php'; require GRADIANT_PARENT_INC_DIR . '/customize/gradiant-blog.php'; require GRADIANT_PARENT_INC_DIR . '/customize/gradiant-footer.php'; require GRADIANT_PARENT_INC_DIR . '/customize/gradiant-general.php'; require GRADIANT_PARENT_INC_DIR . '/customize/gradiant-premium.php'; require GRADIANT_PARENT_INC_DIR . '/customize/customizer_recommended_plugin.php'; require GRADIANT_PARENT_INC_DIR . '/customize/customizer_import_data.php'; } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ Gradiant_Customizer::get_instance();