标签: php wordpress tags
我想在帖子上显示标签列表,但标签上没有链接。现在我使用:
<?php the_tags( '<li>', ', ', '</li>'); ?>
如何从标记中删除链接?
答案 0 :(得分:6)
来自Wordpress Codex:
<?php $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { echo $tag->name . ' '; } } ?>