17 lines
428 B
PHP
17 lines
428 B
PHP
<?php namespace App;
|
|
|
|
/**
|
|
* Theme customizer
|
|
*/
|
|
add_action('customize_register', function (\WP_Customize_Manager $wp_customize) {
|
|
// Add postMessage support
|
|
$wp_customize->get_setting('blogname')->transport = 'postMessage';
|
|
});
|
|
|
|
/**
|
|
* Customizer JS
|
|
*/
|
|
add_action('customize_preview_init', function () {
|
|
wp_enqueue_script('sage/customizer.js', asset_path('customizer.js'), ['customize-preview'], null, true);
|
|
});
|