Viewing 3 replies - 1 through 3 (of 3 total)
  • You just have to make sure you’re using the_tags() or get_the_tag_list() in your theme.

    Thread Starter cogmios

    (@cogmios)

    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>&nbsp;<?php echo "<a href=\"/about/" . $tag->name . "\" rel=\"nofollow\">" . $tag->name . "</a>"; ?></p>
    								<?php
    							}
    						}
    						?>
    Thread Starter cogmios

    (@cogmios)

    Then again … since i’m the only user… I added

    <?php
    if (is_admin)
    {
    the_tags();
    }
    else
    {
    // original code
    }
    ?>

    works like a charm THANKS !!!!!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Plugin: Front-end Editor] Edit Tags?’ is closed to new replies.