如果我理解正确,现在您可以获得id=5的所有术语的子术语,但您只需要显示此列表中的术语,这些术语附在帖子中。
get\\u terms()
检索给定分类法或分类法列表中的术语。
尝试使用wp_get_post_terms()
相反,它允许您设置帖子id。
请确保$post->;ID可用。
wp\\u get\\u post\\u terms()
检索文章的术语。
$args = array( \'hide_empty\' => \'0\',\'taxonomy\' => \'book_cat\', \'child_of\' => 5);
$categories = wp_get_post_terms($post->ID, \'book_cat\', $args);
//rest of your code goes here.....