This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/inc/customizer.php

27 lines
908 B
PHP
Raw Normal View History

<?php
/**
* _s Theme Customizer.
*
* @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 ) {
$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', '_s_customize_register' );
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
2012-12-28 16:38:18 +00:00
*/
function _s_customize_preview_js() {
wp_enqueue_script( '_s_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true );
}
2012-12-28 16:38:18 +00:00
add_action( 'customize_preview_init', '_s_customize_preview_js' );