57 lines
2.3 KiB
PHP
57 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Water Delivery Theme Customizer
|
|
*
|
|
* @package Water Delivery
|
|
*/
|
|
|
|
/**
|
|
* Add postMessage support for site title and description for the Theme Customizer.
|
|
*
|
|
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
|
|
*/
|
|
function water_delivery_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';
|
|
|
|
// Register custom section types.
|
|
$wp_customize->register_section_type( 'water_delivery_Customize_Section_Upsell' );
|
|
|
|
// Load customize sanitize.
|
|
include get_template_directory() . '/inc/customizer/sanitize.php';
|
|
|
|
// Load customize sanitize.
|
|
include get_template_directory() . '/inc/customizer/active-callback.php';
|
|
|
|
// Load topbar sections option.
|
|
include get_template_directory() . '/inc/customizer/topbar.php';
|
|
|
|
// Load header sections option.
|
|
include get_template_directory() . '/inc/customizer/theme-section.php';
|
|
|
|
// Load home page sections option.
|
|
include get_template_directory() . '/inc/customizer/home-section.php';
|
|
|
|
}
|
|
add_action( 'customize_register', 'water_delivery_customize_register' );
|
|
|
|
/**
|
|
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
|
|
*/
|
|
function water_delivery_customize_preview_js() {
|
|
wp_enqueue_script( 'water_delivery_customizer', get_template_directory_uri() . '/inc/customizer/js/customizer.js', array( 'customize-preview' ), '20151215', true );
|
|
}
|
|
add_action( 'customize_preview_init', 'water_delivery_customize_preview_js' );
|
|
/**
|
|
*
|
|
*/
|
|
function water_delivery_customize_backend_scripts() {
|
|
|
|
wp_enqueue_style( 'water-delivery-fontawesome-all', get_template_directory_uri() . '/assets/css/all.css' );
|
|
|
|
wp_enqueue_style( 'water-delivery-admin-customizer-style', get_template_directory_uri() . '/inc/customizer/css/customizer-style.css' );
|
|
|
|
wp_enqueue_script( 'water-delivery-admin-customizer', get_template_directory_uri() . '/inc/customizer/js/customizer-script.js', array( 'jquery', 'customize-controls' ), '20151215', true );
|
|
}
|
|
add_action( 'customize_controls_enqueue_scripts', 'water_delivery_customize_backend_scripts', 10 ); |