Forums

[resolved] Tags without links (4 posts)

  1. abhicool
    Member
    Posted 3 months 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
    Member
    Posted 3 months ago #

  3. abhicool
    Member
    Posted 3 months 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 3 months ago #

    Solved :))

    Useed

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

    :)

Reply

You must log in to post.

About this Topic

Tags