I’m currently creating a simple CMS and I would really, really like to use the editor and mainly, image uploader from WordPress on my site. Is this possible?
I am aware that WordPress uses TinyMCE and that they do offer an image manager as a commercial add-on, which I will probably use if this is not possible.
You can use the wp function the_editor:
http://codex.wordpress.org/Function_Reference/the_editor
If you look up that function on google you’ll find a bunch of pages describing how to insert the wordpress editor into plug-ins. They provide lots of different ways of doing what you’re hopefully looking for.
I used something like:
Which you then have to save to the wordpress db using something like:
That’s the basics of it… Good luck!