Hgfdsoiu
Hgfdsoiu

Reputation: 125

Remove the list for categories children

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

Answers (1)

dkruchok
dkruchok

Reputation: 1899

The easiest way is using jQuery

var innerUl = $(".children").html();
$(".children").remove();
$("ul").append(innerUl);

Or you can use .unwrap(), it would be a better solution.

Upvotes: 1

Related Questions