文章标签 ‘指定分类’
-
wordpress首页只显示指定分类的文章
首页修改代码: //只显示分类10的文 <?php while ( have_posts() ) : the_post();update_post_caches($posts);?> <?php if(in_category(’10′) ) : ?> <div> ……循环体结构代码…… </div> <?php endif;?> <?php endwhile;?> 其中in_category(’10′)中的数字是指显示分类ID。 另一种情况是只隐藏分类10下的文章,只需将if(in_category(’10′)) 换成 if(!(in_category(’10′)))便OK!
...
+阅读全文+
