wp_print_footer_scripts
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-includes/script-loader.php 2255
do_action( 'wp_print_footer_scripts' );
Where the hook is used in WordPress
wp-includes/class-wp-editor.php 328
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'editor_js' ), 50 );
wp-includes/class-wp-editor.php 329
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'force_uncompressed_tinymce' ), 1 );
wp-includes/class-wp-editor.php 330
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'enqueue_scripts' ), 1 );
wp-includes/class-wp-editor.php 923
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'force_uncompressed_tinymce' ), 1 );
wp-includes/class-wp-editor.php 924
add_action( 'wp_print_footer_scripts', array( __CLASS__, 'print_default_editor_scripts' ), 45 );
wp-includes/default-filters.php 357
add_action( 'wp_print_footer_scripts', '_wp_footer_scripts' );
wp-includes/functions.php 7406
add_action( 'wp_print_footer_scripts', 'wp_auth_check_html', 5 );