I'm looking to display a list of tags on my archives.php page. Here is the search archives page.
I have archives by month
<ul>
<?php wp_get_archives(); ?>
</ul>
Archives by category
<ul>
<?php wp_list_categories(); ?>
</ul>
and now I'm trying to look through the codex for a way to display a list of tag links but none of them do that. I just want them to do exactly what my list of categories is doing.
Why can't I find the right template tag for that? Any help is appreciated.