wpeditor issue – shows both mode and not able to focus/edit during visual mode

There are a few ways you can go about adding a wpeditor to text areas. If you have the id value of the textbox you can use this JavaScript command to add the tinyMCE buttons to it dynamically. tinyMCE.execCommand(‘mceAddControl’, false, ‘textbox_id’); In your functions.php, add this code: add_action( ‘edit_page_form’, ‘mytextarea_for_page’ ); function mytextarea_for_page() { wp_editor( … Read more

TinyMCE Plugin Parameter

The first few you listed are not WordPress specific, and information about them can be found as follows: inlinepopups tabfocus paste media fullscreen As for the WordPress specific plugins, their source code is here (trac). There are no comments, but here’s my take based on a very cursory read through: wordpress: seems to setup the … Read more