Support

Account

Home Forums General Issues How to Show Details from Tags into Single Posts Reply To: How to Show Details from Tags into Single Posts

  • You can Show this by using:
    <?php

    $tags = wp_get_post_tags(get_the_ID());
    if ($tags) {
    foreach ($tags as $tag) {
    if ($tag->description) {
    echo ‘<dt>term_id ) . ‘” title=”‘ . sprintf( __( “View all posts in %s” ), $tag->name ) . ‘” ‘ . ‘>’ . $tag->name.’</dt><dd>’ . $tag->description . ‘</dd>’;
    }
    }
    }

    ?>