我想限制wordpress自定义角色,以便仅查看用户列表中的特定用户。
我创建了自定义角色(销售)。销售角色只能查看表中的特定角色。
答案 0 :(得分:0)
您需要使用以下逻辑
将功能分配给销售角色function add_theme_caps() {
// gets the author role
$role = get_role( 'sales' );
// This only works, because it accesses the class instance.
// would allow the author to edit others' posts for current theme only
$role->add_cap( 'list_users' );
}
add_action( 'admin_init', 'add_theme_caps');