我想知道如何通过这种方法在Wordpress中查询的帖子之间添加内容:
<?php $the_query = new WP_Query('category_name=name&showposts=2');
while ($the_query->have_posts()) : $the_query->the_post();?>
有没有办法可以添加一些简单的内容,例如在被拉的两个帖子之间说<hr>
?
答案 0 :(得分:0)
<?php $the_query = new WP_Query('category_name=name&showposts=2');
while ($the_query->have_posts())
{
$the_query->the_post();
echo '<hr />';
}
?>