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
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
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;
?>
:)