[WordPress] 投稿のタグ一覧を表示する方法
投稿のタグ一覧を表示する方法は以下の通り
単にタグを出力したい場合はthe_tagsを使用する
<?php the_tags(); ?>
タグ一覧を取得し、いろいろ処理したい場合はget_the_tagsを使用する
<?php
$posttags = get_the_tags();
if ( $posttags ) {
echo '<ul>';
foreach ( $posttags as $tag ) {
echo '<li class="'.$tag->slug.'"><a href="'.get_tag_link($tag->term_id).'">'.$tag->name.'</a></li>';
}
echo '</ul>';
}
?>