I'm creating a meta box for my custom post type. There are multiple fields where I would like to use wysiwyg editor rather than <textarea>
. Is is possible to add multiple editors to a meta box?
I would really appreciate your help!
Many thanks. Dasha
This did the trick for me:
http://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/
It's basically creating your textarea with an id, then calling from js:
Hope it helps!
But you need to replace presentation with nl2br() function as textarea in custom templates have the toogle JS issue, that removes all your
<P>
and<br/>
tags and therefore all line breaks.