投稿ページにタグを表示する
投稿ページに設定したタグを表示させる
WordPressのテーマであらかじめ用意されているものも多いけど、
たまたまそれがないテーマに出くわして、設置した備忘録
shingle.phpに追記
<?php the_tags( '関連タグ: ', ', ', '<br />' ); ?>
style.cssに追記
.tags a{
display: inline-block;
line-height: 30px;
margin-right: 5px;
padding: 0 1em;
background-color: #fff;
border: 1px solid #aaa;
border-radius: 3px;
white-space: nowrap;
color: #333;
font-size: 13px;
text-decoration: none;
}
.tags a:before{
font-family: dashicons;
content:"\f323 ";
}

