如何在WordPress存档页面中获取相关的类别/类别

时间:2015-07-29 21:10:13

标签: php wordpress woocommerce

我在WordPress中使用WooCommerce。我有几类产品,

示例:

Product 1 Category (//parent)
-- Category 1
-- Category 2
-- Category 3
-- Category 4
Product 2 Category (//parent)
-- Category 10
-- Category 11
-- Category 12
-- Category 13

如果我在第2类(子)的存档页面中,如何将父类别(产品1类别)下的所有其他类别名称作为列表。

1 个答案:

答案 0 :(得分:0)

我解决了这个问题。

<?php 
$terms = get_the_terms( $post->cat_ID , 'product_cat' );
foreach ($terms as $term) { 
    $term_id = $term->term_id;
    $term_link = get_term_link( $term, $taxonomy );
    $term_name = $term->name;
    echo '<a class="cat-box" href="' . $term_link . '"><span class="cat-name">' . $term_name . '</span></a>';   
}
?>