WordPress plugin Simple Tags fix for WordPress 2.9
Published December 21st, 2009 in Tips and Tricks, WordpressSimple Tags is broken with the upgrade to WordPress 2.9. Simple Tags offer many advanced tagging features, that include mass tag editing, embedded tagging, auto tags, dynamic tag clouds, and many other feature. There is a "simple" fix to make it work.
The author had hardcoded WordPress versions. Here is the original line of code, found in the file simple-tags.php under the Check version section.
if ( strpos($wp_version, '2.7') !== false || strpos($wp_version, '2.8') !== false) {
Then add a check for version 2.9 like the code below.
if ( strpos($wp_version, '2.7') !== false || strpos($wp_version, '2.8') !== false || strpos($wp_version, '2.9') !== false ) {
Tested. Works.
Print This Post
Email This Post
Related Articles
- Edit Wordpress Plugin Global Translator for w3.org validation.
- Wordpress - Global Translator Plugin Fix
- Wordpress WP-PostViews plugin to display special characters properly
- Compress individual log files into individual compressed archives
- Wordrpess Theme: it

