Excluding specific categories from WP_Query
这在法典中。您可以从WP\\U查询中排除特定类别。其中,数组(2,6)是本例中要排除的类别的ID。
$query = new WP_Query( array( \'category__not_in\' => array( 2, 6 ) ) );
参见法典:
https://codex.wordpress.org/Class_Reference/WP_Query#Category_ParametersNOTE: If you are trying to exclude category by the name of category
首先,您可以通过提供类别名称来查找类别ID。
$category_id = get_cat_ID( \'My Category\' );
然后添加返回的
$category_id
在您的WP查询参数中,如下所示:
$query = new WP_Query( array( \'category__not_in\' => array( $category_id ) ) );