Hi Guys,
Would really appreciate your help on this probably simple issue.
I’m looking to display my tags in a tag cloud scenario, just each tag once. Whereas now I have the tags for each article being displayed (and repeated for each instance).
Here’s the code:
<div class="side_contain">
<div>Categories</div>
<ul>
<li>[[Ditto? &tpl=`all_tags` ]]</li>
</ul>
</div>
<div class="side_contain">
<div>Archives</div>
</div>
<div class="side_contain">
<div>RSS Feed</div>
</div>
<div class="side_contain">
<div>Search</div>
</div>
The all_tags template simply holds: [+tags+]
Ideally I would like each tag to be displayed in it’s own li.
I do realise that simply listing each tag using the &tags is possible however the tags need to be produced dynamically as others will be added in the future.
Many thanks in advance..