将其放入您的函数中。主题文件夹中的php文件。。。
function query_set_only_author( $wp_query ) {
global $current_user;
if ( is_admin() && !current_user_can(\'manage_options\') ) {
$wp_query->set( \'author\', $current_user->ID );
}
}
add_action(\'pre_get_posts\', \'query_set_only_author\' );