这个模板标签呈现一个链接到tag的标签或属于一篇文章的标签。如果当前没有条目没有关联的标签,就是没都不现实。这个标签需要在循环中使用。
默认用法
<?php?the_tags(?$before,?$sep,?$after?);??>
参数
- $before?
- (string) 显示在实际标签前的文本,默认为:TAGS:
- $sep?
- (string)?分割多个标签的符号,默认为逗号?(,)?
- $after?
- (string)?显示在实际标签后的文本,默认为空。
举例
默认用法The default usage lists tags with each tag (if more than one) separated by a comma (,) and preceded with the default text?Tags:
默认用法
默认情况下,每个标签之间用英文状态下的逗号(,) 隔开,并且以 ‘Tags:’开始
<?php the_tags();??>
html代码
Tags: WordPress, Computers, Blogging
用逗号分隔
显示一个标签列表,后面跟换行
<?php the_tags("Tags:", ", ", "<br />");??>
用箭头分隔
显示一个标签列表,以箭头(>) 分割,前面加文本?Social tagging:
Displays links to tags with an arrow (>) separating the tags and preceded with the text
<?php the_tags("Social tagging: "," > ");??>
HTML代码
Social tagging:?WordPress?>?Computers?>?Blogging
一个列表案例
显示一个标签的列表,以无序列表排列
<?php the_tags("<ul><li>","</li><li>","</li></ul>");??>
HTML
- WordPress
- Computers
- Blogging
噢!评论已关闭。