2012-11-28 22:51:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-07-01 15:21:44 +00:00
|
|
|
* _s Theme Customizer.
|
2012-11-28 22:51:38 +00:00
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add postMessage support for site title and description for the Theme Customizer.
|
|
|
|
*
|
|
|
|
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
|
|
|
|
*/
|
|
|
|
function _s_customize_register( $wp_customize ) {
|
2013-03-05 00:13:56 +00:00
|
|
|
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
|
|
|
|
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
|
|
|
|
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
|
2012-11-28 22:51:38 +00:00
|
|
|
}
|
|
|
|
add_action( 'customize_register', '_s_customize_register' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
|
2012-12-28 16:38:18 +00:00
|
|
|
*/
|
2012-11-28 22:51:38 +00:00
|
|
|
function _s_customize_preview_js() {
|
2015-12-15 09:38:37 +00:00
|
|
|
wp_enqueue_script( '_s_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true );
|
2012-11-28 22:51:38 +00:00
|
|
|
}
|
2012-12-28 16:38:18 +00:00
|
|
|
add_action( 'customize_preview_init', '_s_customize_preview_js' );
|