-1

我尝试在我的侧边栏中反转特定类别的发布顺序。但我无法让它工作。

   <?php query_posts('showposts=8&cat=5$query_string . "&amp;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>
4

1 回答 1

0
global $query_string;
query_posts($query_string.'&showposts=8&cat=5&order=ASC'); 
于 2013-06-15T20:22:19.723 回答