在我的自定义帖子类型(portfolio\\u pt)中,我有一些类似的层次类别结构:
ParentCat
|-child
|-someItem
ParentCat2
|-cild
...
当我尝试通过get\\u获取所有术语的列表时,“someItem”post的\\u terms函数此函数只返回最后一个类别(“子类别”而不返回“父类别”),例如:
global $post;
$terms = get_the_terms( $post->ID, \'portfolio_pt_category\' );
我尝试使用get\\u the\\u term\\u list函数,但效果相同,它只返回最后一个类别。
谢谢你的帮助!