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....
  • May 11, 2022
  • 0 Comments
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]';...
  • May 11, 2022
  • 0 Comments
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...
  • May 10, 2022
  • 0 Comments
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...
  • May 9, 2022
  • 0 Comments
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(...
  • May 9, 2022
  • 0 Comments
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...
  • May 9, 2022
  • 0 Comments