WPを2.9JAにアップグレード後、「Simple Tags」が動かない・・・回避方法!
Wordpress 2.9JAにアップグレードすると「Simple Tags can’t work with this WordPress version !」
(このバージョンでは「Simple Tags」は動作しません」)と表示されます。
PlugInなので作者のバージョンアップを待つか、下記のようにSimple Tagsの「simple-tags.php」を編集して対処します。(2.9のVersionを追加する)
if ( strpos($wp_version, ’2.7′) !== false || strpos($wp_version, ’2.8′) !== false) {
を下記のように書き換えます。(35行付近)
if ( strpos($wp_version, ’2.7′) !== false || strpos($wp_version, ’2.8′) !== false || strpos($wp_version, ’2.9′) !== false ) {
以上で、上記表示が消え「Simple Tags」が利用可能となるはずです。
(実際、利用できるようになりました・・・正式なSimple TagsのVer Upまでの応急処置)
上記参考URL
Simple Tags can’t work with WordPress 2.9 RC

