I have a form, and in the form, I use <?php wp_editor('', 'user_submitted_progress', $settings = array('textarea_name' => 'user_submitted_progress')); ?> to generate a TinyMCE, rather than a simple textarea. The...
TL;DR Question How do I create a submenu for my classes with style_format? Can I append a submenu to the existing menu? With the new Styleselect in TinyMCE 4.0...
Let me first start out by saying that when it comes to hard coding with WordPress, I’m a rookie. Not that I haven’t done it, but more in the...
I want to add the table controls for wp_editor(tinymce) initiated with teeny=>true. Here is what I have done so far (without success): <?php $tinymce_options = array('plugins' => "table", 'theme_advanced_buttons2'...
I have a plugin which saves data via AJAX, and realised that it wasn’t sending out any request. I opened up the console to look further, and low and...
For editing a comment in admin pages the editor is only html, can we modify the edit comment page with a filter to include visual editor too? 1 Answer...
I can use wp_editor() function for add custom post use wp_insert_post() function (with post_content parameter) in my plugin. I need to can be saved data from wp_editor() function. How...
i am using a front built in (article directory plugin) tinymce with wp_editor. what ever i tried i cant get the word counter to work automatically.. i can count...
Thanks to this answer here, I am able to use different instances of wp_editor to determine which buttons each of my differing TinyMCE instances use. However, I’m struggling to...
I’m using wp_editor to add wysiwyg fields to admin edit screens. Each wysiwyg lives within a draggable meta box. Since TinyMCE has issues with dragging, I’m using the following...