added_existing_user
Fires immediately after an existing user is added to a site.
Description
Parameters (2)
- 0. $details_user_id (int)
- The details user id.
- 1. $result (mixed)
- True on success or a
WP_Error
object if the user doesn't exist.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'added_existing_user', $details_user_id, $result );
- The following example is for adding a hook callback.
- // define the added_existing_user callback
- function action_added_existing_user( $details_user_id, $result ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'added_existing_user', 'action_added_existing_user', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'added_existing_user', 'action_added_existing_user', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/ms-functions.php
- do_action( 'added_existing_user', $details['user_id'], $result );