Uses
| Uses | Description |
|---|---|
| wp-includes/general-template.php: wp_head | Prints scripts or data in the head tag on the front end. |
| wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
Fire the wp_head action.
See ‘wp_head’.
File: wp-includes/general-template.php
function wp_head() {
/**
* Prints scripts or data in the head tag on the front end.
*
* @since 1.5.0
*/
do_action( 'wp_head' );
} | Version | Description |
|---|---|
| 1.2.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_head