[Word press] 単純にtag一覧のリストを吐き出す
このまま貼ってしまえば使えます。
<ul>
<?php
$posttags = get_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo '<li><a href="'. get_tag_link($tag->term_id) .'">' . $tag->name . '</a> ('. $tag->count . ")</li>";
}
}
?>
</ul>



