the_tags

函数
the_tags ( $before = null, $sep = ', ', $after = '' )
参数
  • (string) $before Optional. String to use before the tags. Defaults to 'Tags:'.
    Required:
    Default: null
  • (string) $sep Optional. String to use between the tags. Default ', '.
    Required:
    Default: ', '
  • (string) $after Optional. String to use after the tags. Default empty.
    Required:
    Default: (empty)
定义位置
相关方法
get_the_tagsthe_metaget_tagsthe_termshas_tag
引入
2.3.0
弃用
-

tags是一个WordPress函数,它显示分配给当前文章的标签列表。它可用于为用户提供快速查找相关内容的方法。

显示一个文章的标签。

function the_tags( $before = null, $sep = ', ', $after = '' ) {
	if ( null === $before ) {
		$before = __( 'Tags: ' );
	}

	$the_tags = get_the_tag_list( $before, $sep, $after );

	if ( ! is_wp_error( $the_tags ) ) {
		echo $the_tags;
	}
}

常见问题

FAQs
查看更多 >