对我来说,这是一个老问题,但在谷歌上排名第一。我无法快速找到面包屑分类,它支持多个类别,所以我创建了一个并将其包装在ul
为便于造型:
// breadcrumb categorization
$cats = wp_get_post_categories( get_the_ID() ); //post id
foreach($cats as $c) {
$ancestors = array_merge( array_reverse( get_ancestors( $c, \'category\' ) ), [$c] );
echo \'<ul class="post-categories">\';
foreach($ancestors as $id){
echo \'<li><a href="\' . esc_url( get_category_link( $id) ) . \'">\' . get_cat_name( $id ) . \'</a></li>\';
}
echo \'</ul>\';
}