将此代码添加到函数中。php文件或只使用代码段插件将其添加到您的WP站点。如果您不知道如何使用这种代码,只需搜索一下即可。
function wpb_change_author_role(){
global $wp_roles;
$wp_roles->remove_cap( \'author\', \'delete_posts\' );
$wp_roles->remove_cap( \'author\', \'delete_published_posts\' );
$wp_roles->remove_cap( \'author\', \'publish_posts\' );
$wp_roles->remove_cap( \'author\', \'edit_published_posts\' );
#$wp_roles->remove_cap( \'author\', \'edit_posts\' );
}
add_action(\'init\', \'wpb_change_author_role\');