wp_head()
構文
wp_head
wp_head()の詳細
動 作
wp_headアクションを起動して、head内にfunctions.phpで指定したhtmlを記述してくれる。
返り値
返り値:なし
引 数
引数:なし
wp_head()のコード
参照:tags/5.3/src/wp-includes/general-template.php
<?php /** * Fire the wp_head action. * * See {@see 'wp_head'}. * * @since 1.2.0 */ function wp_head() { /** * Prints scripts or data in the head tag on the front end. * * @since 1.5.0 */ do_ action( 'wp_head' ); } ?>