Forums

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

  1. Liony
    Member
    Posted 11 months 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
    moderator
    Posted 11 months 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	}
    ?>

Reply

You must log in to post.

About this Topic

Tags

No tags yet.