<ul>
<?php
$args = array(
'orderby' => 'count',
'order' => 'desc',
'number' => 10
);
$tag_list = get_terms('post_tag', $args);
foreach( $tag_list as $tag ) {
echo '<li><a href="' . get_tag_link($tag->term_id) . '">' . $tag->name . ' (' . $tag->count . ')</a></li>';
}
?>
</ul>
<?php
$args = array(
'orderby' => 'count', // st-kanaなら「あいうえお順」になるらしい?
'order' => 'desc',
'number' => 200
);
$tag_list = get_terms('post_tag', $args);
foreach ($tag_list as $term) {
$u = (get_term_link( $term, 'post_tag' ));
echo "<li><a href='" . $u . "'>" . $term->name . " (" . $term->count . ")</a></li>";
}
?>