File: D:/HostingSpaces/budilia/budilia.nl/wwwroot/wp-content/themes/forestly/inc/fosforit-customizer.php
<?php
// Forestly Customizer
// @package forestly
function fosforit_customize_register( $wp_customize ) {
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
}
add_action( 'customize_register', 'fosforit_customize_register' );
// Loads Theme Customizer preview changes asynchronously.
function fosforit_customize_preview_js() {
wp_enqueue_script( 'fosforit-customizer',
get_template_directory_uri() . '/js/theme-customizer.js',
array( 'customize-preview' ), '20130527', true );
}
add_action( 'customize_preview_init', 'fosforit_customize_preview_js' );
?>