do_action( 'auth_cookie_bad_hash', string[] $cookie_elements )
Fires if a bad authentication cookie hash is encountered.
Parameters
-
$cookie_elements
string[] -
Authentication cookie components. None of the components should be assumed to be valid as they come directly from a client-provided cookie value.
username
stringUser's username.expiration
stringThe time the cookie expires as a UNIX timestamp.token
stringUser's session token used.hmac
stringThe security hash for the cookie.scheme
stringThe cookie scheme to use.
Source
File: wp-includes/pluggable.php
.
View all references
do_action( 'auth_cookie_bad_hash', $cookie_elements );
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |