Uses
| Uses | Description |
|---|---|
| wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
| wp-includes/script-loader.php: wp_print_footer_scripts | Fires when footer scripts are printed. |
Hooks to print the scripts and styles in the footer.
File: wp-includes/script-loader.php
function wp_print_footer_scripts() {
/**
* Fires when footer scripts are printed.
*
* @since 2.8.0
*/
do_action( 'wp_print_footer_scripts' );
} | Version | Description |
|---|---|
| 2.8.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_print_footer_scripts