$categories = get_categories(array( 'child_of' => 1, 'title_li' => '', 'orderby' => 'ID' )); foreach ($categories as $category) { echo '
  • ' . $category->name . '
  • '; } ?>