WordPress 2.3 Incompatibilities
Posted by Jon Lee in Site stuff, tags: plug-ins, ultimate-tag-warrior, upgrade, wordpress
After upgrading to WordPress 2.3 (using the wonderful one-click instant upgrade plug-in), there were some incompatibilities with certain plug-ins.
In this latest update of WordPress, there were some significant changes to the database structure. Tables were reorganized and broke some plug-ins. In particular, the post2cat table is now gone so any plug-ins that relied on reading it to display a post’s category information has been broken.
What Broke
Personally, I had to disable/update the following plug-ins before my blog was fully functional again:
- Ultimate Tag Warrior – replaced with native WordPress tagging.
- Google Sitemaps – Updated to version 3.0
- Popularity Contest
- Category Visibility
Keeping my Tags
The loss of Ultimate Tag Warrior was tragic but the native WordPress tagging function does much the same thing. Migrating UTW tags over was very easy. Under Manage->Import, WordPress included a method to automatically import existing UTW tags!

I then had to replace existing PHP code that displays tags and my tag cloud page with code to use the built in tagging functionality:
<?php the_tags(); //display tags ?>
<?php wp_tag_cloud(''); //display tag cloud ?>
It doesn’t look pretty yet but I’ll worry about fixing it up tomorrow. I’m just glad I got everything working properly. For more details, see the documentation for tags and tag clouds.
Hope all your installations and upgrades go smoothly!
Popularity: 2% [?]
Entries (RSS)