0

我有以下代码来显示 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--; ?>">

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

4

2 回答 2

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

阅读内容以获取有关查询的更多信息

于 2012-07-24T06:30:32.027 回答
0

只需编辑

$recentPosts->query("showposts=3, order=DESC");
于 2012-07-24T06:34:20.520 回答