Contributor具有以下功能
您可以创建“卖家”角色,使其具有与投稿者相同的功能
add_role(
\'seller\',
__( \'Seller\' ),
array(
\'read\' => true,
\'edit_posts\' => true,
\'delete_posts\' => true,
)
);
来自codex的警告
NB: This setting is saved to the database (in table wp_options, field wp_user_roles), so it might be better to run this on theme/plugin activation
在里面
functions.php
, 您应该在中使用此
after_setup_theme 钩
EDIT
您还可以通过这种方式创建与其他用户角色具有相同权限的用户角色
add_role(
\'specialuser\',
__(\'Special User\'),
get_role(\'seller\')->capabilities
);
它将授予
specialuser
与相同的功能
seller
.