• 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?

Viewing 1 replies (of 1 total)
  • 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	}
    ?>
Viewing 1 replies (of 1 total)

The topic ‘How to get post count with a tag?’ is closed to new replies.