Existe, y la tienes en
http://codex.wordpress.org/Function_...e/get_the_tags donde te muestra este ejemplo:
Código PHP:
Ver original<?php
$posttags = get_the_tags();
$count=0;
if ($posttags) {
foreach($posttags as $tag) {
$count++;
if (1 == $count) {
echo $tag->name . ' ';
}
}
}
?>
Modificando el condicional para que te muestre también la segunda y la tercera etiqueta lo tendrás solucionado.