wp_print_footer_scripts()

In this article

Hooks to print the scripts and styles in the footer.

Source

function wp_print_footer_scripts() {
	/**
	 * Fires when footer scripts are printed.
	 *
	 * @since 2.8.0
	 */
	do_action( 'wp_print_footer_scripts' );
}

Hooks

do_action( ‘wp_print_footer_scripts’ )

Fires when footer scripts are printed.

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.