Skip to content

Instantly share code, notes, and snippets.

@dtbaker
Last active August 29, 2015 14:08
Show Gist options
  • Save dtbaker/b5bfe84ff36a67746566 to your computer and use it in GitHub Desktop.
Save dtbaker/b5bfe84ff36a67746566 to your computer and use it in GitHub Desktop.
Show WordPress post count per tag
add_filter ( 'wp_tag_cloud', 'tag_cloud_count' );
function tag_cloud_count( $return ) {
return preg_replace('#(<a[^>]+\')(\d+)( topics?\'[^>]*>)([^<]*)<#imsU','$1$2$3$4 ($2)<',$return);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment