Wordpress 3最新博客文章按从左到右而不是从右到左的顺序排列

时间:2012-07-24 06:20:29

标签: php wordpress

我有以下代码来显示3篇最新博文。目前博客帖子从右到左而不是从左到右显示。

<?php $counter = 3;
   $recentPosts = new WP_Query();
   $recentPosts->query("showposts=3");

?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>
<div class="box<?php echo $counter--; ?>">

如何让最新博客首先出现?首先,我的意思是左边而不是右边。感谢任何帮助!

2 个答案:

答案 0 :(得分:0)

$recentPosts->query("showposts=3&order=DESC");

阅读this了解有关查询的更多信息

答案 1 :(得分:0)

只需编辑

$recentPosts->query("showposts=3, order=DESC");