WordPress获取文章Tag函数:the_tags

WordPress模板函数the_tags用于在文章页输出函数链接,必须用在The Loop主循环中。 the…

WordPress模板函数the_tags用于在文章页输出函数链接,必须用在The Loop主循环中。

the_tags( string $before = null, string $sep = ', ', string $after = '' )

函数参数

$before

字符串值,默认值:null

在函数链接前显示的文本。

$sep

字符串值,默认值:,

在每个函数链接之间显示的文本。

$after

字符串值,默认为空

在函数链接后显示的文本。

函数使用示例

以无序列表输出函数链接:

<ul>
	<?php the_tags('<li>', '</li><li>', '</li>') ?>
</ul>

扩展阅读

the_tags()函数位于:wp-includes/category-template.php

相关函数:

  • get_tag()
  • get_tag_link()
  • get_tags()
  • get_the_tag_list()
  • get_the_tags()
  • is_tag()
  • single_tag_title()
  • tag_description()
  • wp_generate_tag_cloud()
  • wp_tag_cloud()
类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册