I need to make a page that shows a list of all tags on a site alphabetically and by number of entries.
I thought I could do something like this:
{!-- MOST USED TAB --}
<div id="most_used">
<p>{exp:tag:tags backspace="3" type="weblog" orderby="total_entries" sort="desc" limit="500"} {tag} ({total_entries})<br /> {/exp:tag:tags}</p>
</div>
{!-- A-Z TAB --}
<div id="a-z" style="display: none;">
<p>{exp:tag:tags backspace="3" type="weblog" sort="desc" limit="500"} {tag} ({total_entries})<br /> {/exp:tag:tags}</p>
</div>
But it seems that exp:tags:tag requires and entry_id, because I’m not getting any output. exp:tags:cloud doesn’t have the sort parameters that I need. Is there a way to do this? I have a feeling I’m missing something obvious.
Thanks!
