在某些特殊情况下,可能需要禁止用户使用WordPress自带的**重置功能,也就是在登录界面点击“忘记**?”来找回**,如果要禁止WordPress特定用户修改**,可以在主题的 functions.php 添加下面的代码:
add_filter(‘allow_password_reset’, ‘__return_false’ );
如果仅仅是禁止某些特定的用户使用这个功能,可以在主题的 functions.php 添加下面的代码:
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特定用户修改**的详细内容,更多请关注主题盒子。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容