wp_login
Fires after the user has successfully logged in.
Description
Parameters (3)
- 0. $array (callback) =>
array( &$this, 'store_json_api_authorization_token' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_login', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the wp_login callback
- function action_wp_login( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_login', 'action_wp_login', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_login', 'action_wp_login', 10, 3 );
Defined (5)
The action is defined in the following location(s).
- /class.jetpack.php
- add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 );
- /modules/protect.php
- add_action( 'wp_login', array ( $this, 'log_successful_login' ), 10, 2 );
- /modules/sso.php
- add_action( 'wp_login', array( 'Jetpack_SSO', 'clear_cookies_after_login' ) );
- do_action( 'wp_login', $user->user_login, $user );
- /sync/class.jetpack-sync-module-users.php
- add_action( 'wp_login', $callable, 10, 2 );