<?php /** * McKinley Theme Customizer * * @package McKinley */ /** * Set up all options for theme to use in customizer. * * @since McKinley 1.0 * * @param WP_Customize_Manager $wp_customize Customizer object. */ function mckinley_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; } add_action( 'customize_register', 'mckinley_customize_register' ); /** * Binds JavaScript handlers to make Customizer preview reload changes * asynchronously. * * @since McKinley 1.0 */ function mckinley_customize_preview_js() { wp_enqueue_script( 'mckinley-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20131020', true ); } add_action( 'customize_preview_init', 'mckinley_customize_preview_js' );