Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: set_auth_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
978            * @param string $auth_cookie Authentication cookie value.
979            * @param int    $expire      The time the login grace period expires as a UNIX timestamp.
980            *                            Default is 12 hours past the cookie's expiration time.
981            * @param int    $expiration  The time when the authentication cookie expires as a UNIX timestamp.
982            *                            Default is 14 days from now.
983            * @param int    $user_id     User ID.
984            * @param string $scheme      Authentication scheme. Values include 'auth' or 'secure_auth'.
985            * @param string $token       User's session token to use for this cookie.
986            */
987           do_action( 'set_auth_cookie', $auth_cookie, $expire, $expiration, $user_id, $scheme, $token );
988
989           /**
990            * Fires immediately before the logged-in authentication cookie is set.
991            *
992            * @since 2.6.0
993            * @since 4.9.0 The `$token` parameter was added.
994            *
995            * @param string $logged_in_cookie The logged-in cookie value.
996            * @param int    $expire           The time the login grace period expires as a UNIX timestamp.