如要加上tag只要是改一下程式:
以FabThemes的Selene Template為例,
在 1 外觀–> 2 主題編輯器–> 3 修改signle.php
找
<div class="postmeta"> <span class="categorys">Categories: <?php the_category(', '); ?> </span> </div>
改為
<div class="postmeta"> <span class="categorys">Categories: <?php the_category(', '); ?> </span> <span class="categorys">Tag: <?php the_tags(' '); ?> </span> </div>
而重點的code 是 <?php the_tags(‘ ‘); ?> ,
放在那位置,便按個人喜好了。