Hi all,
I have a problem with wp_list_categories. The strucute of the category and its children I want to display is like this:
Category
-Subcategory I
--Subcategory Ia
-Subcategory II
--Subcategory IIa
But the output generated is like this:
Category
-Subcategory I
--Subcategory Ia
--Subcategory II
---Subcategory IIa
I think the problem is that a html tag <ul class="children"> is opened for Subcategory I but it never gets closed, which messes up the formatting.
Any ideas how to solve that? Thx!