Help / WP Development

Hi guys. I noticed that in some themes this numbers is appearing inside an element like SPAN.
But itsn’t inside in the SPAM in my theme. How can I move it to span ?

Hi,
I think the simplest way would be to use the get_archives_link filter hook.

/------------------------------------------------------/
/* Archive List count wrap by span
/------------------------------------------------------/

add_filter('get_archives_link', 'archive_cat_count_span');
    function archive_cat_count_span($links) {        
        $links = str_replace('(', '<span class="pull-right">(', $links);
        $links = str_replace(')', ')</span>', $links);
        return $links;
}

Just copy & paste this code into your theme functions file then check your front-end.

Thanks

Thank you very very much! <3

Sorry again. Can you pleaxe tell me category version of this function ?
I couldn’t find.

You can use wp_list_categories filter for categories

/*-------------------------------------*/
/* Category List count wrap by span
/*---------------------------------------------------------------------*/

add_filter('wp_list_categories', 'your_function_name_cat_count_span');
function your_function_name_cat_count_span($links) {        
    $links = str_replace('(', '<span class="pull-right">(', $links);
    $links = str_replace(')', ')</span>', $links);
    return $links;
}

Thanks

1 Like

Thank you :slight_smile: