前回: WordPress のタグクラウド試行錯誤中
nic せんせーよりご指導いただきました(`・ω・´)
自分でやってみたもの。
<?php
$tags = get_tags('sort_column=menu_order');
foreach ($tags as $list) {
echo "\t\t\t\t\t" . '<li><a href="' . get_bloginfo('home') . '/tag/' . $list->slug . '" title="' . $list->name . ' に含まれる ' . $list->count . ' 件の投稿をすべて表示">' . $list->name . '</a></li>' . "\n";
}
?>
もっとスマートな方法があるそうでヽ(・ω・)ノ