wp_footer()

Fire the wp_footer action.


Description

See ‘wp_footer’.


Source

File: wp-includes/general-template.php

function wp_footer() {
	/**
	 * Prints scripts or data before the closing body tag on the front end.
	 *
	 * @since WP-1.5.1
	 */
	do_action( 'wp_footer' );
}


Changelog

Changelog
Version Description
WP-1.5.1 Introduced.