• gnarbles

    (@gnarbles)


    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

    (@alchymyth)

    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.