secure_signon_cookie

过滤钩子
apply_filters( 'secure_signon_cookie', $secure_cookie, $credentials )
参数
  • (bool) $secure_cookie Whether to use a secure sign-on cookie.
    Required:
  • (array) $credentials { Array of entered sign-on data. @type string $user_login Username. @type string $user_password Password entered. @type bool $remember Whether to 'remember' the user. Increases the time that the cookie will be kept. Default false. }
    Required:
定义位置
相关勾子
secure_auth_cookiesecure_logged_in_cookieset_comment_cookiesset_logged_in_cookieset_auth_cookie
相关方法
sanitize_comment_cookiesget_url_in_contentset_current_screenwp_set_comment_cookiesscreen_iconwp_create_nonce
引入
3.1.0
弃用
-

secure_signon_cookie: 这是WordPress中的一个过滤钩子,允许开发者修改用户登录时用于安全认证的认证cookie。secure_signon_cookie钩子将默认的认证cookie作为一个参数传递,钩子函数可以返回一个修改过的cookie来代替使用。这对于改变cookie的内容或向cookie中添加自定义数据很有用。

过滤是否使用安全登录cookie。

$secure_cookie = apply_filters( 'secure_signon_cookie', $secure_cookie, $credentials );

常见问题

FAQs
查看更多 >