我想为WPMU中的所有子站点添加一个新角色,因此我创建了一个文件并在其上尝试了著名的代码(包括wp-blog-header.php):
$result = add_role(
'ret_moderator',
'مدیر بازنشسته',
array(
'read' => true, // true allows this capability
'edit_posts' => true,
'delete_posts' => true, // Use false to explicitly deny
'delete_published_posts' => true,
'publish_posts' => true,
'upload_files' => true,
'read_private_pages' => true,
'read_private_posts' => true,
'edit_published_posts' => true,
'edit_pages' => true,
'manage_categories' => true,
'manage_links' => true,
'list_users' => true
)
);
它为主要博客添加了角色,但在子站点上是看不见的:)我自己的想法是将代码放在主题之类的某个地方并在子站点(:d)上打开它,但您知道这不是标准方法。
问题在于,您将其放置在主博客的主题中。
为了使其在所有博客上运行,您应该为WordPress创建一个插件,将代码放置在此处,然后将其启用到整个网络(来自Super Admin面板)。
祝你好运:)