How can i sort the categories by ID

wp_list_categories takes an orderby parameter which accepts :

  • ID – Default
  • name
  • slug
  • count
  • term_group

So the default behavior of wp-list-categories is to order by ID but you can specify that like so:

<?php wp_list_categories(array('exclude'=> 73,'orderby' => 'ID'));?>

tech