1. 首页显示指定分类
    备份主题文件夹中的 index.php 文件,修改index.php
    找到如下一行代码:
    <?php if (have_posts()) : ?>
    在上面这行代码的前面加上:
    <?php query_posts('showposts=10 & cat=1');?>
    其中 1 为分类 id,10为文章篇数。
    想在首页中显示指定分类文章也可参考如下操作
    // 只显示分类 14 下的文章
    <?php  while( have_posts()): the_post();update_post_caches($posts);?>
              <?phpif(in_category('14')):?>
                <div class="post">
                        ……循环体结构代码……
                 </div>
              <?phpendif;?>
    <?phpendwhile;?>
    Code

相关文章: