剛剛通過論壇搜索,已經找到解答了,非常感謝哈。
可以獲取文章或自定義內容,詳細頁的頂級分類名稱或子類名稱。
https://wordpress.stackexchange.com/questions/331879/get-categorys-parent-category-while-using-get-the-category-list
$taxonomy = 'category'; //如果是自定義內容,這裏修改自定義分類名稱。
// Get the term assigned to post.
$post_term = wp_get_object_terms( $post->ID, $taxonomy);
if ( ! empty( $post_term ) && ! is_wp_error( $post_term ) ) {
// parent category object
$parent = get_term($post_term[0]->parent, $taxonomy);
echo '
<div class="cat-links">
';
get_template_part('images/inline', 'picto-actu.svg');
// Display post categories.
echo '<a href="'. get_term_link($parent->term_id,$taxonomy).'">'.$parent->name.'</a> >';
echo '<a href="'. get_term_link($post_term[0]->term_id,$taxonomy).'">'.$post_term[0]->name.'</a> >';
echo '
</div>
';
}