You just have to make sure you’re using the_tags() or get_the_tag_list() in your theme.
First of all,
I absolutely adore it that you take the time to answer questions on this forum even though you are busy.
Unfortunately I’m using … get_the_tags…
<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
?>
<p class="tbfooter"><a href="/about/<?php echo $tag->name ?>" rel="nofollow tag"><img src="/wp-content/themes/edl/inc/icons/tag.png" border="0"></a> <?php echo "<a href=\"/about/" . $tag->name . "\" rel=\"nofollow\">" . $tag->name . "</a>"; ?></p>
<?php
}
}
?>
Then again … since i’m the only user… I added
<?php
if (is_admin)
{
the_tags();
}
else
{
// original code
}
?>
works like a charm THANKS !!!!!