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



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

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

您需要使用以下逻辑将功能分配给销售角色,

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

最新更新