Home/Hooks/after_signup_user
ACTION

after_signup_user

Fires after a user's signup information has been written to the database.

wp-includes/ms-functions.php
Line 913
4 Parameters
View Source

Usage

add_action( 'after_signup_user', 'your_callback_function', 10, 4 );

Action Callback:

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

Parameters

$user

Parameter 1

$user_email

Parameter 2

$key

Parameter 3

$meta

Parameter 4

⚡ Action Hook

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