Adding link options in insert/edit link dialog window
Adding link options in insert/edit link dialog window
Adding link options in insert/edit link dialog window
Creating an admin button that when clicked shows a popup form
Loading a self-hosted custom @font-face into TinyMCE dropdowns (Classic Editor) via ‘tiny_mce_before_init’ filter
Strange formatting issue in text editor after WP update from 4.9.3 to 5.3.1
Free Alternate WordPress Editor (without requiring plugins)
Displaying content on the website frontend that was uploaded using wp_editor?
I’m assuming you would have an Edit page and an Add New page, so why not just switch out the wp_insert_post function from the Add New page to wp_update_post? The first argument for wp_editor is the content you want to appear, so just use the current post that’s being edited’s content.
Use WordPress’s Ajax API. like this: $.ajax({ data: { action: ‘save_post_frontend’, content: // get your text }, method: ‘POST’, url: ajaxurl, success: // on success }); Now save the data in wp_ajax_save_post_frontend hook. See documentation for more info.
Not saying it’s not possible, but wp_editor is not designed to be used in a meta box (when tinyMCE, which is on by default, is activated). Here’s the trac ticket where some of the issues are discussed. You can however, use the actions edit_page_form or edit_form_advanced to add your editor with tinyMCE, as suggested by … Read more
From my view, I avoid using the wp editor at all. It doesn’t offer all the good things a IDE can provide. If you have a local server running, you probably can access it. For example, in linux its usally on /var/www/localhost/htdocs/ but it varies a lot from distro to distro. You can also use … Read more