WordPress设置指定分类文章不在首页显示

Author: 陌小雨Date: 2015-04-23View: 75

功能代码

//WordPress设置指定分类文章不在首页显示
function exclude_category_home( $query ) {
if ( $query->is_home ) {
$query->set( 'cat', '-20, -22' ); //你要排除的分类ID
}
return $query;
}
add_filter( 'pre_get_posts', 'exclude_category_home' );

代码说明2022为你的分类ID号

代码布置:将上述代码加入到主题functions.php中刷新首页即可。