after_signup_user WordPress Action Hook
After a user signs up for a Wordpress site, the after_signup_user hook is called. This hook is used to perform any actions that need to happen after a user signs up. For example, you could use this hook to send a welcome email to the new user.
do_action( 'after_signup_user', string $user , string $user_email , string $key , array $meta ) #
Fires after a user’s signup information has been written to the database.
Parameters
- $user
(string)The user's requested login name.
- $user_email
(string)The user's email address.
- $key
(string)The user's activation key.
- $meta
(array)Signup meta data. Default empty array.
Source
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |