WordPress函数:wp_head
一、函数简介
启动wp_head动作。(Fires the wp_head action.)二、函数参数
三、函数案例
<?php wp_head() ?>
四、源代码
/**
* Fires 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' );
}
THE END