我已经注册了一个自定义分类法。我正在使用此代码在上显示此分类法single.php
.
但它也显示了父项和子项。
function showorganisation()
{
$terms = get_the_terms($post->ID, \'organization\');
foreach ($terms as $term) {
$term_link = get_term_link($term, \'organization\');
if (is_wp_error($term_link))
continue;
echo \'<a href="\' . $term_link . \'">\' . $term->name . \'</a>\';
}
}
如何使其仅显示父术语?