Forums

clickable post count (2 posts)

  1. gnarbles
    Member
    Posted 1 year ago #

    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

  2. alchymyth
    The Sweeper
    Posted 1 year ago #

    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;
    }

Topic Closed

This topic has been closed to new replies.

About this Topic