自分用メモ。
ブログカテゴリの時だけ、サイドバーにブログ下のカテゴリメニューを出す。
件数表示付きの場合です。
(階層2階層の場合が、depth=2)
[html]
<ul>
<?php $cats = get_category_by_slug(‘blog’); ?>
<?php wp_list_categories(‘show_count=1&depth=2&orderby=slug&use_desc_for_title=0&hide_empty=1&child_of=’.$cats->term_id.’&title_li=’); ?>
</ul>
[/html]