activate_wp_head action-hookWP 3.0.0

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

do_activate_header()
activate_wp_head
wp-activate.php 96
do_action( 'activate_wp_head' );

Where the hook is used in WordPress

Usage not found.