Wordpress按子ID获取当前的后期父母

时间:2013-01-29 20:19:23

标签: php wordpress parent-child term

在页面我有学期儿童的身份证,我需要通过儿童身份证找出这个孩子的父母,这是可行的,也许有人可以帮忙吗?

2 个答案:

答案 0 :(得分:7)

这就是get_term函数的用途:

$term_id = 21; // Lucky number :)

$child_term = get_term( $term_id, 'category' );
$parent_term = get_term( $child_term->parent, 'category' );

'category'替换为您正在使用的分类法。

答案 1 :(得分:3)

$terms = get_the_terms( $_product->id , 'product_cat');
if($terms) {
    foreach( $terms as $term ) {
        $term = get_term_by("id", $term->parent, "product_cat");
        if ($term->parent > 0) {
            $term = get_term_by("id", $term->parent, "product_cat");
        }
        $cat_obj = get_term($term->term_id, 'product_cat');
        $cat_name = $cat_obj->name;
    }
}
echo '<br />('. $cat_name . ')';