分类法的自定义查询
custom query for taxonomy
我正在使用此查询来显示某些帖子。
query_posts( array(
'post_type' => APP_POST_TYPE,
'post_status' => 'publish',
'posts_per_page' => 4,
APP_TAX_STORE => $term->slug,
),
) );
现在我不想显示来自 APP_TAX_STORE => $term->slug
的所有帖子,而是想排除它们。我尝试了以这种形式找到的所有解决方案,但没有任何效果。有什么想法吗?
您可以使用 tax_query
.
query_posts( array(
'post_type' => APP_POST_TYPE,
'post_status' => 'publish',
'posts_per_page' => 4,
'tax_query' => array(
array(
'taxonomy' => APP_TAX_STORE,
'field' => 'slug',
'terms' => $term->slug,
'operator' => 'NOT IN',
),
),
) );
我正在使用此查询来显示某些帖子。
query_posts( array(
'post_type' => APP_POST_TYPE,
'post_status' => 'publish',
'posts_per_page' => 4,
APP_TAX_STORE => $term->slug,
),
) );
现在我不想显示来自 APP_TAX_STORE => $term->slug
的所有帖子,而是想排除它们。我尝试了以这种形式找到的所有解决方案,但没有任何效果。有什么想法吗?
您可以使用 tax_query
.
query_posts( array(
'post_type' => APP_POST_TYPE,
'post_status' => 'publish',
'posts_per_page' => 4,
'tax_query' => array(
array(
'taxonomy' => APP_TAX_STORE,
'field' => 'slug',
'terms' => $term->slug,
'operator' => 'NOT IN',
),
),
) );