wordpress 在首页不显示某些分类下的文章

在主题下的functions.php里面添加这一段代码,好评!

路径=>xampp/htdocs/wp-content/themes/你使用的主题/function.php

function exclude_category_home( $query ) {

if ( $query->is_home ) {

$query->set( ‘cat’, ‘-4,-8‘ ); //你要排除的分类ID,就是带-号

}

return $query;

}

add_filter( ‘pre_get_posts’, ‘exclude_category_home’ );