Help: Sending Tag Links to Search Pages

Posted in: Newspaper
Post count: 238

I have this piece of code and I want to use it to direct post tags to search page but I couldn’t figure out where the tag code is located.

<span class="entry-tags"> Hashtags: <?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo 'name . '"
>#' . $tag->name . '
';
}
}
?></span>

Post count: 22421

Hi,

The code for the tags can be found here: http://screencast.com/t/DaniYd40t68

Thanks.

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.