调用 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 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>
其中:
「cat=15」 表示 ID 为 15 的分类
「posts_per_page=10」 表示显示数量为该分类下最新 10 篇文章
而首页显示时排除 (此例为排除 ID 为 5 和 6 的分类) 某些分类的源码 (替换掉主题中 index.php 文件中的
<?php while (have_posts()) : the_post(); ?>
即可):
<?php if ( have_posts() ) : query_posts($query_string .'&cat=-5,-6'); while ( have_posts() ) : the_post(); ?>