首页不显示指定分类的文章更新

一般情况下博客首页显示的都是最新日志,如果想将一些特定分类中的文章不在首页显示,下面的方法可以帮你方便地在首页排除特定分类的文章。
复制下面的代码到你的主题functions.php文件:

function exclude_category_home( $query ) {
if ( $query->is_home ) {
$query->set( ‘cat’, ‘-5, -6’ );
}
return $query;
}
add_filter( ‘pre_get_posts’, ‘exclude_category_home’ );

修改第3行的分类ID,然后保存文件,就大功告成了。

原文:http://www.wprecipes.com/how-to-exclude-specific-categories-from-your-blog-homepage

zhcf.me

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

使用腾讯微博登陆