Forums

[resolved] Tags without links (4 posts)

  1. abhicool
    Member
    Posted 2 years ago #

    Hi,

    I am using this code to include tags of articles on page

    <?php
    global $wp_query;
    $wp_query->in_the_loop = true;
    the_tags();
    ?>

    This code is printing tags on page but with links. I want to print tags without any links. please help me

    Thanks in Advance,
    Abhi

  2. esmi
    Theme Diva & Mod
    Posted 2 years ago #

  3. abhicool
    Member
    Posted 2 years ago #

    M still confused How to add tags on page without links
    In above code Each tag is linked to tag search.. I just want simple text tags of respective article. Plz help

  4. abhicool
    Member
    Posted 2 years ago #

    Solved :))

    Useed

    <?php
    if (is_single()) { the_post(); rewind_posts();
    $articletags = strip_tags(get_the_tag_list('',', ',''));
    echo $articletags;
    ?>

    :)

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags