在没有链接的wordpress中显示标签

时间:2010-05-11 09:45:07

标签: php wordpress tags

我想在帖子上显示标签列表,但标签上没有链接。现在我使用:

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

如何从标记中删除链接?

1 个答案:

答案 0 :(得分:6)

来自Wordpress Codex

<?php
  $posttags = get_the_tags();
  if ($posttags) {
    foreach($posttags as $tag) {
      echo $tag->name . ' '; 
    }
  }
?>