在子主题函数中使用此选项。php文件
add_action( \'pre_get_posts\', \'exclude_category_posts\' );
function exclude_category_posts( $query ) {
if( $query->is_main_query() && $query->is_home() ) {
$query->set( \'cat\', \'-27,-30\' );
}
}
向集合中添加以逗号分隔的类别i.d列表。
Never Use Query Posts