如何在首页中排除特定的分类文章

将以下的代码复制到你的functions.php文件中,别忘了修改分类ID为你不想显示的分类ID号码(第4栏)。

1
2
3
4
5
6
7
// No "Quick Tips" on the homepage
function preventHomepageTips($query) {
if($query->is_home() && $query->is_main_query()) {
$query->set('cat', '-40'); // 40是分类的ID号码
}
}
add_action('pre_get_posts', 'preventHomepageTips');
posted @ 2012-12-20 17:13  leeker  阅读(112)  评论(0编辑  收藏  举报