Categories are not showing up according to the hierarchy
the categories can be order differently, it will depend of the arguments in the get_categories() function, once none is specified, it will assume the default. try this to have an idea: $cats = get_categories(); echo ‘<pre>’; print_r($cats); echo </pre>’; exit(); This will give you everything store in $cats variable. For example normally I use the … Read more