wp_head()

Fire the wp_head action.


Description

See ‘wp_head’.


Source

File: wp-includes/general-template.php

function wp_head() {
	/**
	 * Prints scripts or data in the head tag on the front end.
	 *
	 * @since WP-1.5.0
	 */
	do_action( 'wp_head' );
}


Changelog

Changelog
Version Description
WP-1.2.0 Introduced.