在某些特殊情况下,可能需要禁止用户使用WordPress自带的密码重置功能,也就是在登录界面点击“忘记密码?”来找回密码:
如果要禁止所有用户使用这个功能,可以在主题的 functions.php 添加下面的代码:
1 | add_filter('allow_password_reset', '__return_false' ); |
add_filter('allow_password_reset', '__return_false' );
如果仅仅是禁止某些特定的用户使用这个功能,可以在主题的 functions.php 添加下面的代码:
1 2 3 4 5 6 7 | add_filter('allow_password_reset', 'no_reset', 10, 2 ); function no_reset( $bool, $user_id ) { $ids = array( 3, 10 ); // 要禁止的用户ID if ( in_array( $user_id, $ids ) ) return false; return true; } |
add_filter('allow_password_reset', 'no_reset', 10, 2 ); function no_reset( $bool, $user_id ) { $ids = array( 3, 10 ); // 要禁止的用户ID if ( in_array( $user_id, $ids ) ) return false; return true; }
如果你想禁止用户在“我的个人资料”中修改密码,可以参考 WordPress 禁止用户编辑“我的个人资料”的电子邮件等字段
本文WordPress 禁止用户如何使用密码重置功能到此结束。当你被失败拥抱时,成功可能正在一边等着吻你。小编再次感谢大家对我们的支持!