File: /www/wwwroot/aiwellbore.com/wp-content/themes/study-education-pro/inc/customizer.php
<?php
/**
* Study Education Pro Theme Customizer
*
* @package Study Education Pro
*/
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function study_education_pro_customize_registers( $wp_customize ) {
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
}
add_action( 'customize_register', 'study_education_pro_customize_registers' );
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function study_education_pro_customize_preview_js() {
wp_enqueue_script( 'study_education_pro_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20130508', true );
}
add_action( 'customize_preview_init', 'study_education_pro_customize_preview_js' );
function study_education_pro_custom_customize_enqueue() {
wp_enqueue_script( 'study-education-pro-custom-customize', get_template_directory_uri() . '/js/custom.customize.js', array( 'jquery', 'customize-controls' ), false, true );
}
add_action( 'customize_controls_enqueue_scripts', 'study_education_pro_custom_customize_enqueue' );