我在 Wordpress 中有一个自定义角色正在发生这种情况......
add_role('teacher_assistant', 'Teacher Assistant', array(
'read' => true,
'edit_posts' => true,
'delete_posts' => true,
'edit_others_posts' => true,
'edit_others_pages' => true,
'edit_published_posts' =>true,
'edit_pages' =>true,
'read_private_posts' => true,
'moderate_comments' => true,
));
...除了一个小问题外,效果很好。当我想将帖子的作者更改为其他人时,具有“助教”角色的任何人都不会出现在作者选择列表中。似乎只有管理员可供选择。
有谁知道这里发生了什么以及如何解决它(没有插件)?
提前致谢。