<FOCUS_TAG_LINKS_AS_LIST_PAGED>
Tag Function:
- Displays a text link list of all tags like <TAG_LINKS_AS_LIST_PAGED> but with classes in reversed order. Supports paged archive addon.
Main Usage:
- Used within browse_template.html to dynamically recall and load a text link list of all tags with class sizes in reversed order (often used tags are smaller than rarely used ones) and paged archive addon support.
Examples:
In your browse template, you can use the tag like this:
<FOCUS_TAG_LINKS_AS_LIST_PAGED>
Sample Output:
Using the code above will generate the following when the template is run:
<div id="tag_cloud">
<a href="index.php?x=browse&tag=nikon&pagenum=1" class="tags10">Nikon (5)</a>
<a href="index.php?x=browse&tag=nature&pagenum=1" class="tags04">Nature (37)</a>
</div>
CSS Class:
Using these ids allow you to determine the look of the tags list:
#tag_cloud { /* id for tag cloud */
}
Language Variable:
The output of the word "Tags" is definable via your language file:
lang-english.php
$lang_tags =
"Tags:<br/>";
PagedArchiveAddonTags