wp_list_category link before li
-
I want to modify this:
<li class=”cat-item cat-item-1151 current-cat”>
Accountants
<span class=”ui-li-count”>1</span>
to this one:
<li class=”cat-item cat-item-1151 current-cat”>Accountants
<span class=”ui-li-count”>1</span>
I want to put the <code><a href=""></code> before <code><li></li></code> of wp_list_category. here's my code how I used wp_list_category:
$categories = ‘<ul class=”business-categories”>’ . wp_list_categories($args) . ”;
return $categories;
`
can anyone here know how to do it?
- The topic ‘wp_list_category link before li’ is closed to new replies.