Home/Hooks/after_signup_site
ACTION

after_signup_site

Fires after site signup information has been written to the database.

wp-includes/ms-functions.php
Line 850
7 Parameters
View Source

Usage

add_action( 'after_signup_site', 'your_callback_function', 10, 7 );

Action Callback:

function your_callback_function( $domain, $path, $title, $user, $user_email, $key, $meta ) {
    // Your code here
    
}

Parameters

$domain

Parameter 1

$path

Parameter 2

$title

Parameter 3

$user

Parameter 4

$user_email

Parameter 5

$key

Parameter 6

$meta

Parameter 7

⚡ Action Hook

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