get_the_tags()函数用于获取标签信息,包括标签ID、别名、名称、描述等。get_the_tags()函数需要用在The Loop主循环中,如果在主循环之外使用,需要传递文章ID。

语法

get_the_tags( int $id = 0 )

参数

  1. $id 整数型,默认值:当前文章ID,指定文章ID,将返回该文章的标签信息。

实例

<?php
	$posttags = get_the_tags();
	if ($posttags) {
	  foreach($posttags as $tag) {
		echo '标签ID:' . $tag->term_id;
		echo '<br />标签名称:' . $tag->name;
		echo '<br />标签描述:' . $tag->description;
	  }
	}
?>