WordPress首页调用指定分类下的文章

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

1
2
3
4
5
<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文件中的

1
<?php while (have_posts()) : the_post(); ?>

即可):

1
<?php if ( have_posts() ) : query_posts($query_string .'&cat=-5,-6'); while ( have_posts() ) : the_post(); ?>
原文链接:https://xiaohost.com/899.html,转载请注明出处。
0

评论8

请先
  1. 看不懂的代码~
  2. 这代买还蛮简单了呢
    屠龙 2014-06-28 0
  3. 呃,话说我转走了……
  4. 学习了,以后还会来学习滴!
  5. 暂时没考虑到首页指定分类的文章,还是总的来读吧。
    • 对于博客来说其实没必要,如果用wordpress做cms就有必要了
      老牛 2014-07-22 0