I’m trying to get tags working and I’m clearly missing something.
On my posts, I have this code to list the tags associated with a post:
<p class="tags">Tags: {exp:tag:tags entry_id="{entry_id}" type="weblog" backspace="2"}<a href="{path="library/tags"}" title="{tag_name}">{tag}</a>, {/exp:tag:tags} </p>
That displays them correctly.
My tags template then has this:
{exp:tag:entries weblog="library" orderby="entry_date"}
<h5>On “{tag}”</h5>
<p class="date">{entry_date format="%d %M %Y"}</p>
<h1><a href="{path="site_index" title="{title}">{title}</a></h1>
<p class="tag">{summary}</p>
{/exp:tag:entries}
But that displays nothing. What am I doing wrong here?
