Reputation: 125
I list my categories with wp_list_categories().
When there are subcategories, the result/html gives by default :
<ul>
<li><a href="">category parent</a></li>
<ul class="children">
<li><a href="">category children</a></li>
</ul>
</ul>
I would like to remove the ul list for the catégories children, to have a simple list of categories:
<ul>
<li><a href="">category parent</a></li>
<li><a href="">category children</a></li>
</ul>
Do you know how can it be done?
Upvotes: 0
Views: 127