set_auth_cookie

动作钩子
do_action( 'set_auth_cookie', $auth_cookie, $expire, $expiration, $user_id, $scheme, $token )
参数
  • (string) $auth_cookie Authentication cookie value.
    Required:
  • (int) $expire The time the login grace period expires as a UNIX timestamp. Default is 12 hours past the cookie's expiration time.
    Required:
  • (int) $expiration The time when the authentication cookie expires as a UNIX timestamp. Default is 14 days from now.
    Required:
  • (int) $user_id User ID.
    Required:
  • (string) $scheme Authentication scheme. Values include 'auth' or 'secure_auth'.
    Required:
  • (string) $token User's session token to use for this cookie.
    Required:
定义位置
相关勾子
send_auth_cookiessecure_auth_cookieauth_cookieclear_auth_cookieset_comment_cookies
相关方法
wp_set_auth_cookiewp_parse_auth_cookiewp_generate_auth_cookiewp_clear_auth_cookiewp_validate_auth_cookiewp_setcookie
引入
4.9.0
弃用
-

set_auth_cookie 是一个WordPress函数,在用户登录时为他们设置一个认证cookie: 这个函数被用来保持用户在两次访问网站之间的登录状态。

在认证cookie被设置之前立即触发。

do_action( 'set_auth_cookie', $auth_cookie, $expire, $expiration, $user_id, $scheme, $token );

常见问题

FAQs
查看更多 >