Is there an option to reverse the order of categories displayed from the_category currently it's displaying child categories first then parents. I'd like the parents to come first
Parent, child, another child
Is there an option to reverse the order of categories displayed from the_category currently it's displaying child categories first then parents. I'd like the parents to come first
Parent, child, another child
If you put the code from the above website into your functions.php file you can refer to it in your templates like this:
reverse_categories(the_category(' > '));
I'm using it for a breadcrumb...
You must log in to post.