post_password_expires

过滤钩子
apply_filters( 'post_password_expires', time()
参数
  • (int) $expires The expiry time, as passed to setcookie().
    Required:
定义位置
相关勾子
lostpassword_redirectlostpassword_errorslostpassword_postlost_passwordlostpassword_url
相关方法
post_password_requiredwp_lostpassword_urlthe_post_passwordwp_set_passwordget_password_reset_keywp_ajax_send_password_reset
引入
3.7.0
弃用
-

post_types_to_delete_with_user: 这个钩子允许你指定当用户被删除时,哪些文章类型应该和用户一起被删除。

过滤后密码cookie的寿命。

默认情况下,cookie在创建后10天过期。若要将其转换为会话cookie,请返回0。

$expire  = apply_filters( 'post_password_expires', time() + 10 * DAY_IN_SECONDS );

常见问题

FAQs
查看更多 >