【问题标题】:Showing tags in wordpress without link在没有链接的wordpress中显示标签
【发布时间】:2010-05-11 09:45:06
【问题描述】:

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

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

如何从标签中去除链接?

【问题讨论】:

    标签: php wordpress tags


    【解决方案1】:

    来自Wordpress Codex

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

    【讨论】:

    • 丑得要命,但那是 Wordpress 风格。感谢您帮助完成这样一个需要 if 和 foreach 才能完成的基本功能。
    猜你喜欢
    • 2011-07-01
    • 2012-12-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多