Uses
Uses | Description |
---|---|
wp-activate.php: activate_wp_head | Fires before the Site Activation page is loaded. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
Adds an action hook specific to this page.
Fires on ‘wp_head’.
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. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/do_activate_header