WordPress 调用指定分类下的文章

WordPress 调用指定分类下的文章
WordPress 调用指定分类下的文章:

<ul>
    <?php query_posts('cat=15&posts_per_page=10'); while(have_posts()): the_post(); ?>
    <li><a href="<?php the_permalink();?>"><?php the_title();?></a></li>
    <?php endwhile; wp_reset_query(); ?>
</ul>

首页源代码修改,排除某分类显示:

<?php if ( have_posts() ) : query_posts($query_string .'&cat=-5,-6'); while ( have_posts() ) : the_post(); ?>