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
$domainParameter 1
$pathParameter 2
$titleParameter 3
$userParameter 4
$user_emailParameter 5
$keyParameter 6
$metaParameter 7
⚡ Action Hook
Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.