etiket silebilir ya da temadaki tag kodu ile bunu değiştirip ilk üç etiketi gösterebilirsiniz. 3 yerine başka bir rakam da yazabilirsiniz:

Alıntı
<?php
$count = 0;
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
$count++;
if ($count <= 3 ) {
echo '<a href="' . get_tag_link($tag->term_id) . '">' . $tag->name . '</a> ';
}
}
}
?>