Action hook 'auth_cookie_bad_hash'

in WP Core File wp-includes/pluggable.php at line 790

Description

Fires if a bad authentication cookie hash is encountered. }

Occurrences

Filename Line Number
wp-includes/pluggable.php 790

Parameters

Type Name Description
string[] $cookie_elements { Authentication cookie components. None of the components should be assumed to be valid as they come directly from a client-provided cookie value.

PHP Doc

/**
			 * Fires if a bad authentication cookie hash is encountered.
			 *
			 * @since 2.7.0
			 *
			 * @param string[] $cookie_elements {
			 *     Authentication cookie components. None of the components should be assumed
			 *     to be valid as they come directly from a client-provided cookie value.
			 *
			 *     @type string $username   User's username.
			 *     @type string $expiration The time the cookie expires as a UNIX timestamp.
			 *     @type string $token      User's session token used.
			 *     @type string $hmac       The security hash for the cookie.
			 *     @type string $scheme     The cookie scheme to use.
			 * }
			 */