获取存档中所有 wordpress 帖子的分类术语

Get taxonomy terms for all the wordpress posts in an archive

我正在使用以下函数在存档页面中显示选定的分类术语。

echo get_the_term_list( $post->ID, 'dt_portfolio_category', '<ul class="styles"><li>', ',</li><li>', '</li></ul>' );

以上功能只显示第一个帖子的分类术语,而不是所有的。

有什么办法吗? 还有条款不应该重复,他们应该只来一次。

请运行循环内的代码。 希望可以。

示例代码:

while ( have_posts() ) : the_post();
    echo get_the_term_list( $post->ID, 'dt_portfolio_category', '<ul class="styles"><li>', ',</li><li>', '</li></ul>' );
endwhile;