我的WordPress主题有一个名为“Collections”的自定义分类。自定义分类是分层的,因此有子集。
我有一个名为“Books”的集合和一个名为“Novels”的子集合。有一些帖子只在“书籍”中,有些帖子在“小说”中。我希望“Books”集合的页面只显示主要“Books”集合中的帖子,而不是“Novels”子集合中的帖子。但默认情况下,WordPress在分类查询中包含“子集”中的帖子。
如何从分类查询中排除子项中的帖子?对于类别来说这很容易,但似乎没有内置的方法可以使用自定义分类法来实现这一点。
更新 Jan的解决方案完美无缺。这是我使用的代码,放在index.php中的Loop上面:
// if is taxonomy query for 'collections' taxonomy, modify query so only posts in that collection (not posts in subcollections) are shown.
if (is_tax()) {
if (get_query_var('collection')) {
$taxonomy_term_id = $wp_query->queried_object_id;
$taxonomy = 'collection';
$unwanted_children = get_term_children($taxonomy_term_id, $taxonomy);
$unwanted_post_ids = get_objects_in_term($unwanted_children, $taxonomy);
// merge with original query to preserve pagination, etc.
query_posts( array_merge( array('post__not_in' => $unwanted_post_ids), $wp_query->query) );
}
}
答案 0 :(得分:3)
似乎是WP_Query类always includes all items of hierarchical taxonomies。如果你想反击这个,你可以使用他们使用的相同技巧:获取你的分类项的所有子项,然后获取这些子项中的所有post id,然后将它们放在post__not_in
参数中:
$unwanted_children = get_term_children($taxonomy_term_id, $taxonomy);
$unwanted_post_ids = get_objects_in_term($unwanted_children, $taxonomy);
这将产生一个AND posts.ID IN (1, 2, 3) AND posts.ID NOT IN (2, 3)
的查询,该查询只会返回ID为1的帖子。非常不优雅,但它有效。
当然,如果你走这条路,你也可以只传递你想要的帖子ID,并告诉查询没有关于分类法。
你如何对类别这样做? The query code seems to include children there too.