您可以使用下面的简单解决方案。您需要在循环中使用此函数。您可以收集阵列中的标记/类别,或在帖子下显示标记/类别。
$terms = get_the_terms( get_the_ID(), \'category\' );
if ( $terms && ! is_wp_error( $terms ) ) :
$catlinks = array();
foreach ( $terms as $term ) {
$catlinks[] = $term->name;
}
$catso = join( ", ", $catlinks );
?>
<p class="list-of-cats">
<?php printf( esc_html__( \'Categories: <span>%s</span>\', \'textdomain\' ), esc_html( $catso ) ); ?>
</p>