auth_cookie_bad_hash
The WordPress Core auth cookie bad hash hook.
Description
Parameters (1)
- 0. $rest_cookie_collect_status (string) =>
'rest_cookie_collect_status'
- The rest cookie collect status.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'auth_cookie_bad_hash', $rest_cookie_collect_status );
- The following example is for adding a hook callback.
- // define the auth_cookie_bad_hash callback
- function action_auth_cookie_bad_hash( $rest_cookie_collect_status ) {
- // 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 (2)
The action is defined in the following location(s).
- /wp-includes/default-filters.php
- add_action( 'auth_cookie_bad_hash', 'rest_cookie_collect_status' );
- /wp-includes/pluggable.php
- do_action( 'auth_cookie_bad_hash', $cookie_elements );