Home/Hooks/activate_wp_head
ACTION

activate_wp_head

Fires within the `<head>` section of the Site Activation page. Fires on the {@see 'wp_head'} action.

wp-activate.php
Line 96
0 Parameters
View Source

Usage

add_action( 'activate_wp_head', 'your_callback_function' );

Action Callback:

function your_callback_function(  ) {
    // Your code here
    
}

⚡ Action Hook

Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.