auth_cookie_bad_hash
Fires if a bad authentication cookie hash is encountered.
Description
Parameters (1)
- 0. $cookie_elements (array)
- An array of data for the authentication cookie.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'auth_cookie_bad_hash', $cookie_elements );
- The following example is for adding a hook callback.
- // define the auth_cookie_bad_hash callback
- function action_auth_cookie_bad_hash( $cookie_elements ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'auth_cookie_bad_hash', 'action_auth_cookie_bad_hash', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'auth_cookie_bad_hash', 'action_auth_cookie_bad_hash', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/pluggable.php
- do_action( 'auth_cookie_bad_hash', $cookie_elements );