我有以下代码来显示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--; ?>">
如何让最新博客首先出现?首先,我的意思是左边而不是右边。感谢任何帮助!
答案 0 :(得分:0)
$recentPosts->query("showposts=3&order=DESC");
阅读this了解有关查询的更多信息
答案 1 :(得分:0)
只需编辑
$recentPosts->query("showposts=3, order=DESC");