Ticket #441 (closed enhancement: fixed)
Tags on blogposts should be links to filter posts by that tag
| Reported by: | rickybanister | Owned by: | wjohnald |
|---|---|---|---|
| Priority: | major | Milestone: | 1.5 |
| Component: | apostropheBlogPlugin | Version: | trunk |
| Keywords: | Cc: | dordille, geoffd, jake | |
| Symfony version: | 1.4 |
Description
We don't currently have the ability to click on a tag associated with a post to filter the blog.
Right now I'm using this code to display the tags, but they don't link anywhere:
<div class="tags"> <?php if ((count($a_blog_post->getTags()) != 0)): ?> Tags: <?php $i = 1?> <?php foreach ($a_blog_post->getTags() as $tag): ?> <?php echo $tag ?><?php if($i < count($a_blog_post->getTags())):?>, <?php endif ?> <?php $i++ ?> <?php endforeach ?> <?php endif ?> </div>
Make them filter please.
Change History
Note: See
TracTickets for help on using
tickets.

