刚刚通过论坛搜索,已经找到解答了,非常感谢哈。
可以获取文章或自定义内容,详细页的顶级分类名称或子类名称。
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>
';
}