wp_print_footer_scripts() WordPress Function
The wp_print_footer_scripts() function is used to print scripts and data queued for the footer of the page.
wp_print_footer_scripts() #
Hooks to print the scripts and styles in the footer.
Source
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' ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |