Question

Can anyone tell me how I can show a post count in this code snippet?

<?php $tags = get_tags();
   if ($tags) {
   foreach ($tags as $tag) {
   echo '<li><a href="' . get_tag_link( $tag->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $tag->name ) . '" ' . '>' . $tag->name.'</a> </li> ';
   }
};?>

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with wordpress.stackexchange
scroll top