您可以使用筛选器预处理\\u get\\u帖子,以便只列出您的帖子。类似这样:
function my_posts_only( $query ) {
global $pagenow;
if ( \'edit.php\' != $pagenow || ! $query->is_admin )
return $query;
if ( ! current_user_can( \'manage_options\' ) ) {
global $user_ID;
$query->set( \'author\', $user_ID );
}
return $query;
}
add_filter( \'pre_get_posts\', \'my_posts_only\' );