I need count the posts with a tag, I had try to many ways but they all do not work...
How to get the post count with a tag?
I need count the posts with a tag, I had try to many ways but they all do not work...
How to get the post count with a tag?
Try this:
<?php
$tags = get_tags( array('orderby' => 'count', 'order' => 'DESC') );
foreach ( (array) $tags as $tag ) {
?>
<div class="navigation">
<?php echo '<a href="' . get_tag_link ($tag->term_id) . '" rel="tag">' . $tag->name . ' (' . $tag->count . ') </a>'; ?>
</div>
<?php }
?>This topic has been closed to new replies.