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_cookie
-
Authentication cookie.
- $expire
-
The time the login grace period expires as a UNIX timestamp. Default is 12 hours past the cookie's expiration time.
- $expiration
-
The time when the authentication cookie expires as a UNIX timestamp. Default is 14 days from now.
- $user_id
-
User ID.
- $scheme
-
Authentication scheme. Values include 'auth', 'secure_auth', or 'logged_in'.
- $token
-
User's session token to use for this cookie.
Source
Changelog
Version | Description |
---|---|
WP-4.9.0 | The $token parameter was added. |
WP-2.5.0 | Introduced. |