the_tags without hyperlinks?

时间:2011-02-09 作者:Scott B

如何将\\u标记称为没有超链接的列表?

2 个回复
最合适的回答,由SO网友:Ethan Seifert 整理而成
<ul>
   <?php
    $tags = get_tags();

    foreach($tags as $tag) {
        echo "<li>$tag->name</li>";
   }
   ?>

</ul>
SO网友:Leandro

它显示您的帖子的标签。如果您使用“get\\u tags()”,您将列出wordpress的所有标签。

   <?php
    if (is_array(get_the_tags())) {
           $tags = get_the_tags();
           foreach($tags as $tag) {
              echo "$tag->name";
           } 
        } 
    ?>
如果“is\\u array()”,则应检查get\\u the\\u tags(),否则在\\u post()没有标记的情况下会出现错误。

结束

相关推荐