I know it is possible to list categories in the sidebar:
<ul> <?php wp_list_categories('arguments'); ?> </ul>
but what about tags?
I know it is possible to list categories in the sidebar:
<ul> <?php wp_list_categories('arguments'); ?> </ul>
but what about tags?
See:
http://codex.wordpress.org/Template_Tags/wp_tag_cloud
And for future reference, available template tags:
Is it possible to display the tag as a list and not a cloud? I did check both links already.
Did you read any of the first page I linked to?
<?php wp_tag_cloud('format=list'); ?>
If you want to avoid the cloud embiggening of tags based on usage, also make sure to set the 'smallest' and 'largest' parameters to the same size.
I must admit I only glanced through that page. Thank you for your help! :)
This topic has been closed to new replies.