↧
Answer by Swen for Insert wp_editor on front-end with AJAX?
So, after doing some more digging, I answered my own question by "connecting the dots", so to speak. There's a lot of bits and pieces of info on this topic on StackOverflow and StackExchange, but none...
View ArticleInsert wp_editor on front-end with AJAX?
I'm trying to insert a wp_editor() into a page on the front-end with AJAX. The code I have right now inserts the wp_editor elements and the needed JavaScript and CSS files, but none of the settings I...
View ArticleAnswer by John Dorner for Insert wp_editor on front-end with AJAX?
tinymce.execCommand( 'mceAddEditor', true, element.id );did the trick for me.Thanks to Goran Jakovljevic's answer on: How to load wp_editor via AJAX
View Article