wp_head() – Fire the wp_head action.

You appear to be a bot. Output may be restricted

Description

Fires the wp_head action.

See wp_headwp_head .

Usage

wp_head();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/general-template.php
Lines:

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

 View on GitHub View on Trac