假设这是默认的主查询,请参见示例pre_get_posts
, 其中显示了如何从主查询中排除类别:
function wpa78465_exclude_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( \'cat\', \'-1,-1347\' ); // IDs of categories to exclude
}
}
add_action( \'pre_get_posts\', \'wpa78465_exclude_category\' );