我有以下代码,将我的单词帖子中的标签放入我的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类放在标签之间的'/'上