I really don’t understand this. This code does put the categories in hierarchical order:
$categories = wp_list_categories("hierarchical=1");
But this doesn’t:
$categories = get_categories("hierarchical=1");
But, I checked, and wp_list_categories is using get_categories itself – so why doesn’t it work for me.
Any help… anyone???