/ Published in: PHP
Genius stuff right here from https://gist.github.com/BronsonQuick
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php /* This code filters the Categories archive widget to include the post count inside the link */ add_filter('wp_list_categories', 'cat_count_span'); function cat_count_span($links) { return $links; } /* This code filters the Archive widget to include the post count inside the link */ add_filter('get_archives_link', 'archive_count_span'); function archive_count_span($links) { return $links; }?>
URL: https://gist.github.com/BronsonQuick/2692275