函数原型
do_activate_header()
函数描述
Adds an action hook specific to this page.
是否弃用
未弃用
函数参数
无
函数返回值
无
函数位置
File: wp-activate.php.
函数源码
function do_activate_header() {
/**
* Fires before the Site Activation page is loaded.
*
* Fires on the {@see 'wp_head'} action.
*
* @since 3.0.0
*/
do_action( 'activate_wp_head' );
}
源码链接
变更日志
| Version | Description |
|---|---|
| MU (3.0.0) | Introduced. |

