add_user_to_blog
Fires immediately after a user is added to a site.
Description
Parameters (2)
- 0. $array
- The array.
- 1. $int (int) =>
10
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'add_user_to_blog', $array, $int );
- The following example is for adding a hook callback.
- // define the add_user_to_blog callback
- function action_add_user_to_blog( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'add_user_to_blog', 'action_add_user_to_blog', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'add_user_to_blog', 'action_add_user_to_blog', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /classes/class-s2-core.php
- add_action('add_user_to_blog', array(&$s2class_multisite, 'wpmu_add_user'), 10);