我在下面的循环中有这个代码
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="new-posts-form">
<div class="new-posts-img"><a href="<?php the_permalink(); ?>"></a><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(100,80)); ?></a></div>
<div class="new-posts-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
<div class="new-post-description"><?php content(\'11\'); ?></div>
<div class="new-post-add-date-time"><img src="<?php bloginfo(\'template_url\'); ?>/images/tb_clock.png" /><?php the_time(\'F j, Y\'); ?> at <?php the_time(\'g:i a\'); ?> : <?php the_category(\', \') ?></div>
</div> <!--end new posts form-->
<?php endwhile; ?>
<?php endif; ?>
我在我的博客中有5篇文章,这个循环在主页上运行得很好,可以毫无问题地显示所有5篇文章
但是当我在同一个循环中使用相同的代码时single.php
页面仅显示一篇文章,不显示其他四篇文章