Title: clickable post count
Last modified: August 19, 2016

---

# clickable post count

 *  [gnarbles](https://wordpress.org/support/users/gnarbles/)
 * (@gnarbles)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/clickable-post-count/)
 * im using `<?php wp_list_categories(‘orderby=name&title_li=
    &show_count=1′); ?
   >` and was wondering how to make its actual post count number clickable with 
   the category name

Viewing 1 replies (of 1 total)

 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/clickable-post-count/#post-1985435)
 * add a filter function like this to functions.php of your theme:
 *     ```
       add_filter('wp_list_categories', 'cat_count_inline');
       function cat_count_inline($links) {
       $links = str_replace('</a> (', ' (', $links);
       $links = str_replace(')', ')</a>', $links);
       return $links;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘clickable post count’ is closed to new replies.

## Tags

 * [clickable](https://wordpress.org/support/topic-tag/clickable/)
 * [list_categories](https://wordpress.org/support/topic-tag/list_categories/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [Michael](https://wordpress.org/support/users/alchymyth/)
 * Last activity: [15 years, 2 months ago](https://wordpress.org/support/topic/clickable-post-count/#post-1985435)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
