after_signup_user
The WordPress Core after signup user hook.
Description
Parameters (3)
- 0. $wpmu_signup_user_notification (string) =>
'wpmu_signup_user_notification'
- The wpmu signup user notification.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
4
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'after_signup_user', $wpmu_signup_user_notification, $int, $int );
- The following example is for adding a hook callback.
- // define the after_signup_user callback
- function action_after_signup_user( $wpmu_signup_user_notification, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'after_signup_user', 'action_after_signup_user', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'after_signup_user', 'action_after_signup_user', 10, 3 );
Defined (2)
The action is defined in the following location(s).
- /wp-includes/ms-default-filters.php
- add_action( 'after_signup_user', 'wpmu_signup_user_notification', 10, 4 );
- /wp-includes/ms-functions.php
- do_action( 'after_signup_user', $user, $user_email, $key, $meta );