wpmu_activate_user WordPress Action Hook
This hook is called when a new user is created, either by self-registration or by an administrator. It allows you to do any necessary initialization for the new user, such as sending a welcome email or creating a user profile.
do_action( 'wpmu_activate_user', int $user_id , string $password , array $meta ) #
Fires immediately after a new user is activated.
Parameters
- $user_id
(int)User ID.
- $password
(string)User password.
- $meta
(array)Signup meta data.
Source
Changelog
Version | Description |
---|---|
MU (3.0.0) | Introduced. |