Categories

Tags

Archives


Simple WYMeditor and WordPress 2.6


This post was published on Tuesday 5 August 2008.

I love WYMeditor, it is by far the best Javascript text editor I have used.   As I have written before, I use the Simple WYMeditor plugin so I can have WYMeditor in my WordPress installation.

However, when I upgraded to WordPress 2.6 it stopped working for me.   There is no new version of Simple WYMeditor as yet, but this little fix worked for me.

Simply change line 69 from this:

69 if ( strpos($wp_version, ‘2.5’) !== false ) {

to this:

69 if ( $wp_version >= “2.5” ) {

Enjoy!