【发布时间】:2009-10-09 20:24:43
【问题描述】:
我想知道如何通过这种方法在 Wordpress 中查询的帖子之间添加一些内容:
<?php $the_query = new WP_Query('category_name=name&showposts=2');
while ($the_query->have_posts()) : $the_query->the_post();?>
有没有一种方法可以让我添加一些简单的东西,比如在被拉出的两个帖子之间添加一个<hr>?
【问题讨论】: