Best Browser for Editing Posts

TinyMCE is generally cross-browser compatible. However they provide the best support for IE, Firefox and Safari. I’ve never ran into problems with my beloved Opera too. http://www.tinymce.com/wiki.php/Browser_compatiblity If there are any bugs they’re mostly not browser-dependent, but if they are – try Firefox, Safari, Opera, IE – in that order.

TinyMCE doesn’t work correctly in the Media Modal Window

i had the same “problem” just two days ago. Finally it worked somehow but wasn’t reliable at all. Switching editors just didn’t work occasionally and as said, wasn’t a reliable solution. The only reason to use tinyMCE here was the ability to add links to attachments. I took an other route and came to this … Read more

TinyMCE – Insert media at the beginning of post

If your goal is to get a photo at the top of every post, I’d encourage you to use the featured image instead. It can be added to any post type with add_theme_support(): // add featured image to Page post type add_theme_support( ‘post-thumbnails’, array( ‘page’ ) ); Then the user can upload an image to … Read more

Why Editor reformats my code

I suggest you to use htmlspecialchars() before sending content andhtmlspecialchars_decode() before showing content on page, here is functions that you need to copy/paste to your functions.php : function wp_po9568($content) { return htmlspecialchars($content); } add_filter(‘content_save_pre’,’wp_po9568′); And: function wp_po5689($content) { return htmlspecialchars_decode($content); } add_filter( ‘the_content’,’wp_po5689′); WordPress by default comments out php tags.

Change the background of the TinyMCE editor with available WP arguments

So this is how I achieved what I was after – The filter ‘tiny_mce_before_init’ is used to update the settings of the editor, so you can add your own JS to the ‘setup’ key. add_filter(‘tiny_mce_before_init’, ‘initiate_tinyMCE_wordcount’); function initiate_tinyMCE_wordcount($initArray){ $initArray[‘setup’] = <<<JS [function(ed){ ed.onLoad.add(function(ed, e){ var tb_name = tinyMCE.activeEditor.id; // The ID of the active editor … Read more