在某些特殊情况下,可能需要禁止用户使用WordPress自带的密码重置功能,也就是在登录界面点击“忘记密码?”来找回密码:
如果要禁止所有用户使用这个功能,可以在主题的 functions.php 添加下面的代码:
1 |
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; } |