如何在用户表wordpress admin中显示自定义用户?

时间:2017-05-22 12:37:53

标签: php wordpress woocommerce hook-woocommerce

我想限制wordpress自定义角色,以便仅查看用户列表中的特定用户。

我创建了自定义角色(销售)。销售角色只能查看表中的特定角色。

1 个答案:

答案 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');