Change URL in wp_list_categories
-
I have this code in my php template
<?php wp_list_categories( array( ‘title_li’ => ”, ‘hierarchical’ => true, ‘taxonomy’ => ‘portfolio’, ‘depth’ => 1 ) ); ?>
This generates output
<li class=”cat-item cat-item-212″>Events
I want to change the href to “https://www.iclicu.com/project/events/”
The page on my site I am trying to alter is https://www.iclicu.com/gallery
At the top of the page you can see categories like ‘Abstract’, ‘Architecture’ etc. Each of those categories point to
https://www.iclicu.com/portfolio/abstract/
https://www.iclicu.com/portfolio/architecture/I want them to point to
https://www.iclicu.com/project/abstract/
https://www.iclicu.com/project/architecture/Can someone help me please
- The topic ‘Change URL in wp_list_categories’ is closed to new replies.