activate_wp_head
Fires within the <head> section of the Site Activation page.
Fires on the wp_head action.
Usage
add_action( 'activate_wp_head', 'wp_kama_activate_wp_head_action' );
/**
* Function for `activate_wp_head` action-hook.
*
* @return void
*/
function wp_kama_activate_wp_head_action(){
// action...
}Changelog
| Since 3.0.0 | Introduced. |
Where the hook is called
activate_wp_head
wp-activate.php 92
do_action( 'activate_wp_head' );