auth_cookie_bad_hash action-hook . WP 2.7.0
Fires if a bad authentication cookie hash is encountered.
Usage
add_action( 'auth_cookie_bad_hash', 'action_function_name_3982' ); function action_function_name_3982( $cookie_elements ){ // action... }
- $cookie_elements(string[])
- An array of data for the authentication cookie.
Changelog
Since 2.7.0 | Introduced. |
Where the hook is called
auth_cookie_bad_hash
wp-includes/pluggable.php 692
do_action( 'auth_cookie_bad_hash', $cookie_elements );
Where in WP core the hook is used WordPress
wp-includes/default-filters.php 277
add_action( 'auth_cookie_bad_hash', 'rest_cookie_collect_status' );