Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: customize_controls_init

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
113 add_action( 'customize_controls_print_scripts', 'print_head_scripts', 20 );
114 add_action( 'customize_controls_print_footer_scripts', '_wp_footer_scripts' );
115 add_action( 'customize_controls_print_styles', 'print_admin_styles', 20 );
116
117 /**
118  * Fires when Customizer controls are initialized, before scripts are enqueued.
119  *
120  * @since 3.4.0
121  */
122 do_action( 'customize_controls_init' );
123
124 wp_enqueue_script( 'heartbeat' );
125 wp_enqueue_script( 'customize-controls' );
126 wp_enqueue_style( 'customize-controls' );
127
128 /**
129  * Fires when enqueuing Customizer control scripts.
130  *
131  * @since 3.4.0