您好,我是 Wordpress 的新手,但我设计了一些元素,并在其中添加了最近的帖子。我的问题,我可以让它们重复 5 个帖子吗?谢谢 :)
<div id="main_content">
<h2>Latest Products</h2>
<div class="latest_products">
<div class="group">
<?php query_posts("post_per_page=1"); the_post(); ?>
<h3 class="stick_note"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="pro_content">
<div class="product_thumbnail"> <?php the_post_thumbnail('thumbnail'); ?> </div>
<p><?php the_excerpt(); ?></p>
</div>
</div>
</div> <!-- END LATEST PRODUCTS -->
</div> <!-- END Main Content -->