do_action( 'set_logged_in_cookie', string $logged_in_cookie , int $expire , int $expiration , int $user_id , string $scheme , string $token )
Fires immediately before the logged-in authentication cookie is set.
Parameters
- $logged_in_cookie
-
The logged-in cookie value.
- $expire
-
The time the login grace period expires as a UNIX timestamp.<br> Default is 12 hours past the cookie's expiration time.
- $expiration
-
The time when the logged-in authentication cookie expires as a UNIX timestamp.<br> Default is 14 days from now.
- $user_id
-
User ID.
- $scheme
-
Authentication scheme. Default 'logged_in'.
- $token
-
User's session token to use for this cookie.
Source
Changelog
Version | Description |
---|---|
4.9.0 | The $token parameter was added. |
2.6.0 | Introduced. |