0

我有两个分类法,我需要建立一个基于另一个分类法的术语列表。

分类 1 - Auto_Brand

分类 2 - 城市

我知道我可以使用$terms = get_terms("auto_brands"); or $terms = get_terms("city");,,但是我如何构建代码以仅在该城市附加了 auto_brand 的情况下获取该城市?

4

1 回答 1

0

分类法不直接与其他分类法交互。它们仅与 Post 对象交互并封装。我能想到的唯一方法是使用 WP_Query 运行分类查询来收集所有使用 BOTH 分类的帖子,然后遍历每个帖子以构建一组独特的术语:

$args = array(
    'post_type' => 'post',
    'tax_query' => array(
        'relation' => 'AND',
        array('taxonomy' => 'auto_brand'),
        array('taxonomy' => 'city')
    )
);
$q = new WP_Query($args); //Get the posts

$found_terms = array(); //Initialize Empty Array
$taxonomies = array('auto_brand', 'city'); //Taxonomies we're checking
$args = array('fields'=>'names'); //Get only the names
foreach($q->posts as $t_post) //Begin looping through all found posts
{
    $post_terms = wp_get_post_terms($t_post->ID, $taxonomies, $args);
    $found_terms = array_merge($found_terms, $post_terms); //Build Terms array
}
$unique_terms = array_unique($found_terms); //Filter duplicates

这是未经测试的,但它应该让您朝着正确的方向开始。

于 2013-01-10T02:23:53.003 回答