Forums

How to get post count with a tag? (2 posts)

  1. Liony
    Member
    Posted 3 years ago #

    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?

  2. MichaelH
    Volunteer
    Posted 3 years ago #

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

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.