在函数

时间:2016-11-21 03:47:35

标签: php html css

我有以下代码,将我的单词帖子中的标签放入我的html

HTML:

<h3 class="tags">
    <?php 
            $posttags = get_the_tags();

            $tags = array();
            if ($posttags) {
               foreach($posttags as $tag) {
                  $tags[] = $tag->name;
               }
            }
            $newTags = implode($tags, ' / ');

            echo $newTags;
    ?> 
</h3>

我想把一个css类放在标签之间的'/'上

0 个答案:

没有答案