林列出所有WordPress的帖子在博客類別,但嘗試了一個名爲「最後」類添加到每三個「fourcol」類類添加到每三個WordPress郵寄
HTML
<div class="container">
<div class="row">
<?php query_posts('category_name=blog&showposts=10&orderby=date&order=dsc'); if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="fourcol">
<a href=""><h2 class="blogtitle"><?php the_title(); ?></h2></a>
<a href="#"><img src="images/_scroll1.jpg"></a>
<span class="date">12 May 2011</span>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<a class="more" href="#">Keep reading</a>
</div><!-- fourcol END -->
<?php endwhile; endif; ?>
</div><!-- row END -->
</div><!-- container END -->
希望這有意義嗎?
爲你更新了我的答案。誤讀它 – Phil