I came across a wordpress template with a section for tag cloud. Here is the code: <div class="two-col"> <h2 class="start">TAG CLOUD</h2> <ul class="etc"> <li><?php if (function_exists('wp_tag_cloud') ) : ?> <?php wp_tag_cloud('smallest=8&largest=20&'); ?> <?php endif; ?></li> </ul> </div> How do I activate this or use this?
Primarily the tag clouds are placed in sidebar. So I will sugegst you toplace that in sidebar of ur blog. Open sidebar.php file and put the code at the location where you want it. You may require to change the <div class="two-col">
You need tags - for each post, there is an edit panel for tags - as you add them in, the tags will appear using the code you showed here. The most posts share the same tags, the larger that work appears in the cloud.