customize_controls_enqueue_scripts WordPress Action Hook
The customize_controls_enqueue_scripts hook is used to enqueue scripts for the Customizer screen. This hook is triggered when the Customizer is first loaded, and allows scripts to be loaded that will help with customizing the appearance of the site.
do_action( 'customize_controls_enqueue_scripts' ) #
Enqueue Customizer control scripts.
Contents
More Information
customize_controls_enqueue_scripts is an action hook triggered after the WP Theme Customizer after customize_controls_init was called, its actions/callbacks executed, and its own styles and scripts enqueued, so you can use this hook to register your own scripts and styles for WP Theme Customizer.
This action hook doesn’t have parameters.
Source
File: wp-admin/customize.php
Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |