我认为您必须使用get\\u帖子5次。这个怎么样:
global $post;
$posts = array();
//categories you want to pull latest posts from;
$cats = (1,2,3,4,5);
foreach($cats as $cat):
$args = array( \'numberposts\' => 1, \'category\' => $cat );
$posts[] = get_posts($args);
endforeach;
if($posts): ?>
<ul>
<?php foreach( $posts as $post ) : setup_postdata($post); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
我完全没有测试这个,但我认为它可能有用