allow_password_reset

过滤钩子
apply_filters( 'allow_password_reset', $allow, $user->ID )
参数
  • (bool) $allow Whether to allow the password to be reset. Default true.
    Required:
  • (int) $user_id The ID of the user attempting to reset a password.
    Required:
定义位置
相关勾子
password_resetafter_password_resetvalidate_password_resetlostpassword_redirectlostpassword_post
相关方法
get_password_reset_keywp_ajax_send_password_resetcheck_password_reset_keypost_password_requiredwp_lostpassword_urldefault_password_nag
引入
2.7.0
弃用
-

allow_password_reset是一个过滤器,允许你修改用户是否可以重置他们的密码。默认情况下,用户被允许重置他们的密码,但这个过滤器可以用来改变这一点。

过滤是否允许重置密码。

$allow = apply_filters( 'allow_password_reset', $allow, $user->ID );

常见问题

FAQs
查看更多 >