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 AURAMART_PARENT_INC_DIR . '/customizer/sanitization.php'; } /** * Admin Script */ function auramart_admin_script() { wp_enqueue_style('auramart-admin-style', AURAMART_PARENT_INC_URI . '/customizer/assets/css/admin.css'); wp_enqueue_script( 'auramart-admin-script', AURAMART_PARENT_INC_URI . '/customizer/assets/js/admin-script.js', array( 'jquery' ), '', true ); wp_localize_script( 'auramart-admin-script', 'auramart_ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function auramart_customize_preview_js() { wp_enqueue_script( 'auramart-customizer', AURAMART_PARENT_INC_URI . '/customizer/assets/js/customizer-preview.js', array( 'customize-preview' ), '20151215', true ); } function auramart_customizer_script() { wp_enqueue_script( 'auramart-customizer-section', AURAMART_PARENT_INC_URI .'/customizer/assets/js/customizer-section.js', array("jquery"),'', true ); } // Include customizer customizer settings. function auramart_customizer_settings() { require AURAMART_PARENT_INC_DIR . '/customizer/customizer-options/auramart-header.php'; require AURAMART_PARENT_INC_DIR . '/customizer/customizer-options/auramart-blog.php'; require AURAMART_PARENT_INC_DIR . '/customizer/customizer-options/auramart-footer.php'; require AURAMART_PARENT_INC_DIR . '/customizer/customizer-options/auramart-general.php'; require AURAMART_PARENT_INC_DIR . '/customizer/customizer-options/auramart_recommended_plugin.php'; } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ AuraMart_Customizer::get_instance();