Topic: Tags link resquest
It's possible to get another template eg: tags.html to get results tagged link post ?
Thank
You are not logged in. Please login or register.
It's possible to get another template eg: tags.html to get results tagged link post ?
Thank
you can use include <?php include 'tags.html' ?> but i don't understand you need if you write in tags.html <?php echo $page['tags']; ?> you get tags but you need write tags first in post.md like this:
Title: Welcome Tags: tag1, tag2
Try to use this code
<p>Tags: <?php if($page['tags']){ echo $page['tags']; }else{ echo 'No tags in this post'; }; ?></p>
Nakome thank you, but I knew how it made display.
What I want is to have the tags clickable and will list all the items associated with the tag.
This allows you to use tags as a category if we put that;)
stradfred, there is no tags cloud functionality, yet. It can be implemented as a plugin or built function.
Awilum thank you, I see if I can do it as a plugin in this case