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

Tho*_*mas 1 php tags wordpress

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

<?php the_tags( '<li>', ', ', '</li>'); ?>
Run Code Online (Sandbox Code Playgroud)

如何从标签中删除链接?

the*_*e_e 6

来自Wordpress Codex:

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