Man*_*kis 5 php wordpress parent-child term
在页面我有学期儿童的ID,我需要通过儿童ID找出这个孩子的父母,这是可以的,也许有人可以帮忙吗?
这就是get_term函数的用途:
$term_id = 21; // Lucky number :)
$child_term = get_term( $term_id, 'category' );
$parent_term = get_term( $child_term->parent, 'category' );
Run Code Online (Sandbox Code Playgroud)
替换'category'为您正在使用的任何分类.
| 归档时间: |
|
| 查看次数: |
19473 次 |
| 最近记录: |