让WordPress指定分类下的文章不显示在网站首页

针对搜索引擎来说网站需要及时更新或者天天更新,但是对于浏览者来说不是每一篇文章都是那么有价值,那么将部分更新的文章不显示在网站首页的话就是个不错的选择了,即考虑到了搜索引擎又照顾了网站浏览者对网站质量的判断和态度。对于WordPress来说代码直接搞定:


//在首页中排除某些分类,不在首页显示其文字
function exclude_category_home( $query ) {
if ( $query->is_home ) {
$query->set( 'cat', '-2, -3' ); //你要排除的分类ID
}
return $query;
}
add_filter( 'pre_get_posts', 'exclude_category_home' );

Leave a reply

Your email address will not be published. Required fields are marked *