Wordpress获取分类Wordpress的条款

时间:2013-01-10 01:36:56

标签: wordpress taxonomy

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

分类1 - Auto_Brand

分类2 - 城市

我知道我可以使用$terms = get_terms("auto_brands"); or $terms = get_terms("city");,但是如何构建代码才能抓住该城市附加了auto_brand的城市?

1 个答案:

答案 0 :(得分:0)

分类法不与其他分类法直接交互。它们只与Post Objects交互并封装。我能想到的唯一方法是使用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

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