Basically need the default WordPress TinyMCE
WYSIWYG editor where the user will enter some formatted text in my plugin. How do I integrate/implement TinyMCE
in a simple HTML WordPress form??
I’m using WordPress v2.9!
Basically need the default WordPress TinyMCE
WYSIWYG editor where the user will enter some formatted text in my plugin. How do I integrate/implement TinyMCE
in a simple HTML WordPress form??
I’m using WordPress v2.9!
You must be logged in to post a comment.
The function you are looking for is
wp_tiny_mce
. Here is how to include the editor in one of your pluginâs admin panel.Include this code in the
admin_head
hookCall the editor anywhere you need it to be displayed
Source