auth_cookie_valid
Fires once an authentication cookie has been validated.
Description
Parameters (2)
- 0. $cookie_elements (array)
- An array of data for the authentication cookie.
- 1. $user (WP_User)
- User object.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'auth_cookie_valid', $cookie_elements, $user );
- The following example is for adding a hook callback.
- // define the auth_cookie_valid callback
- function action_auth_cookie_valid( $cookie_elements, $user ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'auth_cookie_valid', 'action_auth_cookie_valid', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'auth_cookie_valid', 'action_auth_cookie_valid', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/pluggable.php
- do_action( 'auth_cookie_valid', $cookie_elements, $user );