set_auth_cookie, $auth_cookie, $expire, $expiration, $user_id, $scheme, $token
set_auth_cookie, $auth_cookie, $expire, $expiration, $user_id, $scheme, $token
Appears in: 7.0.3
Hook Type: action
Displaying hooks found in version: 7.0.3do_action('set_auth_cookie, $auth_cookie, $expire, $expiration, $user_id, $scheme, $token') is found 1 times:
- /wp-includes/pluggable.php line 1154
* @param int $user_id User ID. * @param string $scheme Authentication scheme. Values include 'auth' or 'secure_auth'. * @param string $token User's session token to use for this cookie. */ do_action( 'set_auth_cookie', $auth_cookie, $expire, $expiration, $user_id, $scheme, $token ); /** * Fires immediately before the logged-in authentication cookie is set. * * @since 2.6.0 * @since 4.9.0 The `$token` parameter was added.