隐藏WordPress某一分类的文章不在首页显示
WordPress | 2011-12-22 星期四 15:52 修改@2011-12-22 15:53 | 评论↓
명탐정코난 극장판 21기
利用这个方法,我把满首页的董桥文章隐藏了,当然,点击栏目进去仍然能够看到。
转载自:http://blog.sina.com.cn/s/blog_4890a82b0100tc0f.html
用 query_posts 函数,直接在 index.php 添加代码即可,非插件就能实现。
方法是:
打开 index.php 文件,找到如下代码:
<?php if ( have_posts( ) ): ?>
然后修改成:
<?php if ( have_posts() ) : is_home() && query_posts($query_string .'&cat=-126') ?>
cat= 想让出现在首页的分类ID,前面加个负号就代表不让这个ID分类下的文章显示在首页。
html button 파일 다운로드 다운로드 다운로드
Trackbacks
Leave a Comment