成员插件将完全满足您的需要。我将其与手动添加大写结合使用:
// Manipulating a role\'s capabilities -> http://codex.wordpress.org/Roles_and_Capabilities#edit_posts
function manipulate_role(){
$role = get_role( \'Master Editor\' ); // pick up role to edit
$role->add_cap( \'edit_users\' );
$role->remove_cap( \'update_core\' );
}
add_action( \'admin_init\', \'manipulate_role\');
也许只有我,但我发现了
mapping your own cpt\'s 是有史以来最糟糕的主意。。。
下载地图帽,而不是编码你的“地图”。WP有一种处理角色和Cap的方法,您永远无法编写出与Map Cap只需几个复选框就能完成的工作一样好或更好的代码。