Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: set_logged_in_cookie

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
980            * @param string $logged_in_cookie The logged-in cookie value.
981            * @param int    $expire           The time the login grace period expires as a UNIX timestamp.
982            *                                 Default is 12 hours past the cookie's expiration time.
983            * @param int    $expiration       The time when the logged-in authentication cookie expires as a UNIX timestamp.
984            *                                 Default is 14 days from now.
985            * @param int    $user_id          User ID.
986            * @param string $scheme           Authentication scheme. Default 'logged_in'.
987            * @param string $token            User's session token to use for this cookie.
988            */
989           do_action( 'set_logged_in_cookie', $logged_in_cookie, $expire, $expiration, $user_id, 'logged_in', $token );
990
991           /**
992            * Allows preventing auth cookies from actually being sent to the client.
993            *
994            * @since 4.7.4
995            *
996            * @param bool $send Whether to send auth cookies to the client.
997            */
998           if ( ! apply_filters( 'send_auth_cookies', true ) ) {