WordPress显示链接标签和最多4个

时间:2019-04-13 15:48:12

标签: php wordpress

我想在主题中显示标签,它应该链接到corespondent标签和max标签4。

我创建下面的代码,但不确定该代码中是否具有正确的转义符。

<p class="the-tags">
    <?php
       $posttags = get_the_tags();
   $count=0;
   if ($posttags) {
       foreach($posttags as $tag) {
          $count++;
          echo '<a href="'.get_tag_link($tag->term_id).'">'.$tag->name.'</a> ';
          if( $count >4 ) break;
       }
   }
       ?>
</p>

0 个答案:

没有答案