I'm using wp_list_categories
to output my categories in Wordpress. The results are:
<ul>
<li class="cat-item cat-item-1"><a href=".." >..</a></li>
<li class="cat-item cat-item-8"><a href=".." >..</a></li>
<li class="cat-item cat-item-10"><a href=".." >..</a></li>
</ul>
Is there a way to remove these default classes on the list items? So to remove cat-item
and cat-item-#
?
Thanks!