这是我自己想出来的。我使用下面的代码,并根据需要重复多次,到目前为止没有任何问题。如果有人认为这是不正确的,请发表评论。我没有在这个页面的其他地方使用主循环,而是使用了WP\\u查询。
<ul class="subcats-list">
<?php
$weightloss = new WP_Query();
$weightloss->query(\'showposts=5\');
while ($weightloss->have_posts()) : $weightloss->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul><!-- subcat -->