Welcome IP: 91.205.124.17

How to add an Ultimate Tag Warrior Tag Cloud

Send this article to a friend Send this article to a friend

The Ultimate Tag Warrior is an awesome plugin for WordPress that allows a Blog author to add keyword tags to your WordPress posts and pages. UTW is relatively simple to install and use, but contains many advanced features that the user can customize as well. For example, tag clouds (one of the most popular keyword organizing methods) are often used on some of the highest ranking sites. The following tutorial explains how to add a custom tag cloud to WordPress in the footer section.

Note: As of WordPress 2.3 and beyond, this tutorial is obsolete.

How to add a Tag Cloud to WordPress:

This tutorial assumes that you already have installed the Ultimate Tag Warrior Plugin.

  1. Login to your WordPress Admin Panel and navigate to Presentation -> Theme Editor
  2. Locate and select Stylesheet (style.css) from the side panel
  3. Add the following code to the bottom of style.css and click update file
  4. .tagcloud {
    float: center;
    padding-left: 20px;
    padding-right: 20px;
    }
  5. Now select Footer (footer.php) from the side panel and find the following:
  6. <div id="footer">

    after add:

    <div class="tagcloud"><?php UTW_ShowWeightedTagSetAlphabetical("coloredsizedtagcloud","","20") ?></div>
    

    and click update file

    Note: You can tweak and adjust the font color, size and other settings for the tag cloud by navigating to Options -> Tags. Scroll down to the section Global Formatting Settings, make your adjustments and then click Save to accept the changes.

  7. Finally, go view your site.