wp_print_footer_scripts action-hookWP 2.8.0

Fires when footer scripts are printed.

Usage

add_action( 'wp_print_footer_scripts', 'wp_kama_print_footer_scripts_action' );

/**
 * Function for `wp_print_footer_scripts` action-hook.
 * 
 * @return void
 */
function wp_kama_print_footer_scripts_action(){

	// action...
}

Changelog

Since 2.8.0 Introduced.

Where the hook is called

wp_print_footer_scripts()
wp_print_footer_scripts
wp-includes/script-loader.php 2245
do_action( 'wp_print_footer_scripts' );

Where the hook is used in WordPress

wp-includes/class-wp-editor.php 324
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'editor_js' ), 50 );
wp-includes/class-wp-editor.php 325
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'force_uncompressed_tinymce' ), 1 );
wp-includes/class-wp-editor.php 326
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'enqueue_scripts' ), 1 );
wp-includes/class-wp-editor.php 919
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'force_uncompressed_tinymce' ), 1 );
wp-includes/class-wp-editor.php 920
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'print_default_editor_scripts' ), 45 );
wp-includes/default-filters.php 353
add_action( 'wp_print_footer_scripts', '_wp_footer_scripts' );
wp-includes/functions.php 7318
add_action( 'wp_print_footer_scripts', 'wp_auth_check_html', 5 );