カテゴリ一覧

term_id;
$results = get_categories(‘child_of=’.$cat_id);
if (!empty( $results )) : // 子カテゴリーあり
wp_list_categories(‘hierarchical=0&child_of=’.$cat_id);
else : // 子カテゴリーなし
$posts = get_posts(‘cat=’.$cat_id.’&posts_per_page=-1′);
// ループでポスト表示
endif;
?>