我有以下代码来显示 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--; ?>">
如何让最新的博客首先出现?首先,我的意思是在左边而不是在右边。感谢任何帮助!