• hi all,
    how can i count a special tag?
    for example i have a tag (car) and i use it in 4 posts.
    now how can i see that ‘car’ used 4 times.

    excuse me for my bad English!
    please help me.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    You can navigate to Posts > Tags, in your WordPress dashboard, to see how many times a tag has been used. Hope it helps. ??

    Thread Starter mrhashemian

    (@mrhashemian)

    thank you, but i don’t want it.
    i need a code. i want use the code in my site.

    please help me.

    Thread Starter mrhashemian

    (@mrhashemian)

    Who can help me?
    please!!!!

    Thread Starter mrhashemian

    (@mrhashemian)

    [Resolved] i found it:

    
    <?php
    $posttags =  get_tags();
      foreach($posttags as $tag) {
          if($tag->name=="your tag"){
             echo $tag->count; 
          }
      }
    ?>
    

    I’m not very good at PHP, but i test the above code and it works.

    Hi,

    Thanks for posting the solution. Just wanted to note that bumping posts is against WPorg support forum guidelines, so please don’t do that in feature. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘count the special tag’ is closed to new replies.