Custom category link in wp_list_categories()

I simply want the link to be /catname instead of /category/catname for all the links listed using the wp_list_categories() function. Any ideas for this?

1 Answer
1

Okay, I’ve found the answer. This is not possible. So I had to build the permalink manually this way:

<ul class="list-items categories"> 
 <?php $category_ids = get_all_category_ids(); 
 $args = array( 'orderby' => 'slug', 'parent' => 0 ); 
 $categories = get_categories( $args ); 
 foreach ( $categories as $category ) { 
 echo '<li><a href="' . $category->slug . '" rel="bookmark">' . $category->name . '</a>  
 </li>'; } ?> 
</ul>

Leave a Comment