在页面我有学期儿童的身份证,我需要通过儿童身份证找出这个孩子的父母,这是可行的,也许有人可以帮忙吗?
答案 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 . ')';