函数使用方法
<?php the_tags( $before, $sep, $after ); ?>
$before 在显示之前输出的内容,一般是标签链接所处容器HTML标签。 $sep 用来分隔的内容,你可以为空,具体效果看下面的图。 $after 显示在标签之后的内容,一般是标签链接所处容器HTML标签。
使用示例
默认方法
<?php the_tags(); ?>
等同于:
<?php the_tags( 'Tags: ', ', ', '' ); ?>
得到:
Tags:XXX, XXXX
再来一个
<?php the_tags( '<ul><li>', '</li><li>', '</li></ul>' ); ?>