カテゴリーアーカイブ(category.php)で、親カテゴリ・子カテゴリのどちらのアーカイブでも、子カテゴリの一覧を表示する方法。 category.php <?php //$catに最上位カテゴリの情報を入れる $cat = get_category($cat); while ( $cat->parent > 0 ) $cat = get_category( $cat->parent ); //親カテゴリIDを取得 $parentID = attribute_escape($cat->cat_ID); //子カテゴリIDを全て取得し、配列に入れる $catChildren = get_category_children($parentID); $catIDs = explode('/',$catChildren); array_shift($catIDs); sort ($catIDs