19 个代码片段让 WordPress 更易于管理
1. 根据用户名来限制管理菜单项目的访问
如果你希望你的管理菜单的某些项对某些用户可见,那么这个代码就会帮到你。只需替换 functions.php 中的 clients-username 为如下代码即可:
function remove_menus()
{
global $menu;
global $current_user;
get_currentuserinfo();
if($current_user->user_login[……]