I’ve been working on developing a plugin that adds a widget that allows you to edit the content with a wysiwyg editor. I want to use the default wordpress...
So I just found this great WPSE thread about security for themes/plugins. It answered most of my questions but it was created before the new wp_editor() function was built....
This is my current code: $initial_data = $this->options['my_plugin_editor']; $settings = array( 'quicktags' => array('buttons' => 'em,strong,link',), 'quicktags' => true, 'tinymce' => true, 'textarea_rows' => 20, ); $id = 'my_plugin_editor_options[my_plugin_editor]';...
I’m creating a custom options page and I have a textarea that I’ve turned into a TinyMCE editor using wp_editor. TinyMCE displays correctly, however it breaks when I include...
Hi i have a WordPress installation with over 35000 pages which are sorted into trees like so … There is an ongoing issue with page edit loading very slowly...
I use wp_editor() on the frontend. media_buttons are displayed on default if visitor is logged in. I want to display these media buttons whether user is logged in or...
I wan’t to detect/callback when a wp_editor(..) output text-area/content-editable is focus. Quite a simple question that I could not find anywhere. <div class="compose-body"> <?php $content=""; $editor_id = 'compose-editor'; wp_editor(...
When I am creating a post from the admin panel and using a youtube link in the Editor, the editor automatically fetching the video from youtube and displaying right...
This question already has answers here: Closed 9 years ago. Possible Duplicate: How to load wp_editor() through AJAX/jQuery There are several questions about this (like this, or that), but...
In the WP editor there is a full screen button. It has shortcut ALT+SHIFT+G. When the button is pressed it shows a different full screen editor then when the...