要返回该帖子附带的术语列表,请尝试get_the_term_list()
. 这将返回单个帖子的术语,通过使用before、separator和after参数,您可以轻松构建HTML标记结构以满足您的需要。
以下示例根据附加到特定帖子的主题分类法创建无序的术语列表:
<?php
$terms = get_the_term_list( $post->ID, \'topics\', \'<ul><li>\', \'</li><li>\', \'</li></ul>\' );
if ( $terms ): ?>
<h2><?php esc_html_e( \'Topics:\', \'yourtextdomain\' ); ?></h2>
<?php echo wp_kses_post( $terms, \'yourtextdomain\' );
endif;
WP Codex条目
tget_the_term_list()
:
https://codex.wordpress.org/Function_Reference/get_the_term_list