ページに用語の子の ID があります。この子の親を子 ID で調べる必要があります。
質問する
24837 次
2 に答える
9
それがこのget_term
関数の目的です:
$term_id = 21; // Lucky number :)
$child_term = get_term( $term_id, 'category' );
$parent_term = get_term( $child_term->parent, 'category' );
'category'
使用している分類法に置き換えます。
于 2013-01-29T20:23:22.370 に答える
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 . ')';
于 2013-09-02T13:24:56.670 に答える