
Okay, a while ago, I upgraded my personal blog from WordPress 2.2.3 to WordPress 2.3. One of my biggest concerns was how would I switch from using the Ultimate Tag Warrior plug-in to WP 2.3′s tagging system. Good thing it didn’t involve too much of a fuss and I’d like to share how I did it.
<?php if (is_tag()) { echo ' : '; UTW_ShowCurrentTagSet('tagsettextonly'); } ?> in the header.php file. I previously put it there so that tags pages would show the tag in the page title.<?php UTW_ShowTagsForCurrentPost("commalist") ?> (shows my tags) with WP’s <?php the_tags('before','separator ','after'); ?> found in my index.php and single.php. Remember to replace before, separator and after with elements that you’d want to show up when showing the tags.<?php UTW_ShowWeightedTagSetAlphabetical("sizedtagcloud","",0) ?> in my tags.php template page with <?php wp_tag_cloud('smallest=8&largest=36&'); ?>
My blog’s running with no problems whatsoever.
29 Responses