我尝试在我的侧边栏中反转特定类别的发布顺序。但我无法让它工作。
<?php query_posts('showposts=8&cat=5$query_string . "&order=ASC"'); if (have_posts()) : ?>
<li id="senasteNytt">
<?php while (have_posts()) : the_post(); ?>
<h3 class="widget-title"><?php the_title(); ?></h3>
<div class="sidbarContent"><?php the_content(); ?></div>
<li>
<?php endwhile; ?>
</li>
<?php endif; wp_reset_query();?>
</ul>
<div class="clear"></div>