你好Im新的WordPress的,但我設計了一些元素,並在他們最近的帖子。我的問題是,我可以讓他們重複5次嗎?謝謝:)WordPress的query_posts()
<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 -->
更具體。你的問題對於不知道你建立什麼的人以及爲什麼沒有任何意義。 – 2013-05-14 10:47:12
我在博客中有帖子,在主頁我想展示最近的5篇帖子,這段代碼給我帶來了第一個。我想這整個結構重複每個帖子得到5個 – 2013-05-14 10:52:29