do_activate_header()
Adds an action hook specific to this page.
Fires on wp_head.
Hooks from the function
Returns
null. Nothing (null).
Usage
do_activate_header();
Changelog
| Since 3.0.0 | Introduced. |
do_activate_header() do activate header code WP 6.9.1
function do_activate_header() {
/**
* Fires within the `<head>` section of the Site Activation page.
*
* Fires on the {@see 'wp_head'} action.
*
* @since 3.0.0
*/
do_action( 'activate_wp_head' );
}