set_logged_in_cookie WordPress Action Hook

The set_logged_in_cookie hook is used to set the logged in cookie for a user. This hook is called when a user logs in.

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

(string)The logged-in cookie value.

$expire

(int)The time the login grace period expires as a UNIX timestamp. Default is 12 hours past the cookie's expiration time.

$expiration

(int)The time when the logged-in authentication cookie expires as a UNIX timestamp. Default is 14 days from now.

$user_id

(int)User ID.

$scheme

(string)Authentication scheme. Default 'logged_in'.

$token

(string)User's session token to use for this cookie.


Top ↑

Source

File: wp-includes/pluggable.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.9.0The $token parameter was added.
2.6.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More