Action hook 'customize_controls_print_footer_scripts'

in WP Core File wp-admin/customize.php at line 306

View Source

customize_controls_print_footer_scripts

Action Hook
Description
Prints templates, control scripts, and settings in the footer.

Hook Information

File Location wp-admin/customize.php View on GitHub
Hook Type Action
Line Number 306

Hook Parameters

This hook doesn't accept any parameters.

Usage Examples

Basic Usage
<?php
// Hook into customize_controls_print_footer_scripts
add_action('customize_controls_print_footer_scripts', 'my_custom_function');

function my_custom_function() {
    // Your custom code here
}

Source Code Context

wp-admin/customize.php:306 - How this hook is used in WordPress core
<?php
 301  	/**
 302  	 * Prints templates, control scripts, and settings in the footer.
 303  	 *
 304  	 * @since 3.4.0
 305  	 */
 306  	do_action( 'customize_controls_print_footer_scripts' );
 307  	?>
 308  </div>
 309  </body>
 310  </html>

PHP Documentation

<?php
/**
	 * Prints templates, control scripts, and settings in the footer.
	 *
	 * @since 3.4.0
	 */
Quick Info
  • Hook Type: Action
  • Parameters: 0
  • File: wp-admin/customize.php
Related Hooks

Related hooks will be displayed here in future updates.