Hi can anyone help.
Trying to swap:
<div class="block">
<h3>Categories</h3>
-
<?php wp_list_categories('title_li='); ?>
</div>
for Tags.
So instead of catogories the page shows my tags. any ideas?
Hi can anyone help.
Trying to swap:
<div class="block">
<h3>Categories</h3>
</div>
for Tags.
So instead of catogories the page shows my tags. any ideas?
This is what I use to display the tag cloud on a page:
if (function_exists('wp_tag_cloud'))
wp_tag_cloud('smallest=10&largest=18&number=0');
The smallest and largest are font sizes. And number=0 displays the full tag cloud; vary that number if you want a set amount.
It works for me, with 2.7.
This topic has been closed to new replies.