On this page
do_action( 'set_auth_cookie', string $auth_cookie, int $expire, int $expiration, int $user_id, string $scheme, string $token )
Fires immediately before the authentication cookie is set.
Parameters
$auth_cookiestring-
Authentication cookie value.
$expireint-
The time the login grace period expires as a UNIX timestamp.
Default is 12 hours past the cookie's expiration time. $expirationint-
The time when the authentication cookie expires as a UNIX timestamp.
Default is 14 days from now. $user_idint-
User ID.
$schemestring-
Authentication scheme. Values include
'auth'or'secure_auth'. $tokenstring-
User's session token to use for this cookie.
Source
File: wp-includes/pluggable.php. View all references
do_action( 'set_auth_cookie', $auth_cookie, $expire, $expiration, $user_id, $scheme, $token );
Related
Used By
| Used By | Description |
|---|---|
| wp_set_auth_cookie() wp-includes/pluggable.php | Sets the authentication cookies based on user ID. |
Changelog
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/set_auth_cookie