user_register
The WordPress Core user register hook.
Description
Parameters (1)
- 0. $array (callback) =>
array(&$this, 'register_post')
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'user_register', $array );
- The following example is for adding a hook callback.
- // define the user_register callback
- function action_user_register( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'user_register', 'action_user_register', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'user_register', 'action_user_register', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /classes/class-s2-core.php
- add_action('user_register', array(&$this, 'register_post'));