0

大家好,我想知道是否有人可以帮助我。我想为 woocommerce 商店经理角色添加一个上限。我找到了这个功能,但它不起作用。

function add_capability() {
    // gets the author role
    $role = get_role( 'shop_manager' );

    // This only works, because it accesses the class instance.
    $role->add_cap( 'add_new_user' ); 
}
add_action( 'admin_init', 'add_capability');

任何人都知道解决方案,我将不胜感激。

4

1 回答 1

0

根据当前的能力列表,没有名为add_new_user. 请参阅以下链接:http ://codex.wordpress.org/Roles_and_Capabilities#Capabilities 。

添加的正确功能是create_users,一旦添加了功能,该选项就会出现在Profile -> Add New User下

function add_capability() {
    // gets the author role
    $role = get_role( 'shop_manager' );

    // This only works, because it accesses the class instance.
    $role->add_cap( 'create_users' );    

}
add_action( 'admin_init', 'add_capability');
于 2014-11-09T06:40:27.867 回答