Adding Tag Clouds to your WordPress blog gives you a catchy look.The Tag Clouds are in turn used to increase your blog page views also.Thus you can get more revenue form Google Adsense .
In order to display tags on your WordPress blog, you’ll just want to add this little code snippet whenever you want the tag cloud to display (I have added Tag Cloud in my blog footer).
Here is the code ,
<?php wp_tag_cloud(”); ?>
WordPress also allows you to customize your cloud to display the way you want it to. Most people like to emphasize the most used tags by making their font much larger. You can determine the size using the following code,
<?php wp_tag_cloud(‘smallest=8&largest=32&’); ?>
In this example, the tags will be displayed in alphabetical order with the least used tags being 8px and the most used tags will be 32px. You can of course adjust this to meet your needs.