Quantcast
Channel: WordPress › Support » Forum: Hacks - Recent Topics
Viewing all articles
Browse latest Browse all 8245

mrfraz on "order get_the_tags()"

$
0
0

Hey,

it's possible to order the tags with this code?
i have two tags, but i want to show only one.

maybe the one with the most posts, or only "this tags"... or something like this? but not sort.. alphabetical

<?php

$posttags = get_the_tags();
$count=0;
if ($posttags) {
  foreach($posttags as $tag) {
    $count++;
    if (1 == $count) {
      echo $tag->name . '';
    }
  }
}
?>

thank you very much!


Viewing all articles
Browse latest Browse all 8245

Trending Articles