Advertisement
Apina

remove tinymce filters

Sep 23rd, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Espresso Disable Extra Editor Buttons
  4. Plugin URI: http://github.com/
  5. Description: This plugin will fix a theme compatibility issue with the Event Espresso event editor
  6. Version: 1.0
  7. Author: Josh Feck
  8. Author URI: http://eventespresso.com
  9. License: GPLv2
  10. */
  11.  
  12. /* Copyright 2013 Josh Feck
  13.  
  14. This program is free software; you can redistribute it and/or modify
  15. it under the terms of the GNU General Public License as published by
  16. the Free Software Foundation; either version 2 of the License, or
  17. (at your option) any later version.
  18.  
  19. This program is distributed in the hope that it will be useful,
  20. but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. GNU General Public License for more details.
  23.  
  24. You should have received a copy of the GNU General Public License
  25. along with this program; if not, write to the Free Software
  26. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  27. */
  28.  
  29. function ee_remove_stuff() {
  30. remove_filter('mce_external_plugins', 'add_plugin');
  31. remove_filter('mce_buttons_3', 'register_button_3');
  32. remove_filter('mce_buttons_4', 'register_button_4');
  33. }
  34. add_action('init', 'ee_remove_stuff', 50);
  35.  
  36.  
  37. /*-----------------------------------------------------------------------------------*/
  38. /* Add TinyMCE Buttons to Editor */
  39. /*-----------------------------------------------------------------------------------*/
  40. add_action('admin_head', 'ee_add_button');
  41.  
  42. function ee_add_button() {
  43.  
  44. $screen = get_current_screen();
  45. if($screen->action == "add" || $screen->action == "edit") {
  46.  
  47. if ( current_user_can('edit_posts') && current_user_can('edit_pages') )
  48. {
  49. add_filter('mce_external_plugins', 'add_plugin');
  50. add_filter('mce_buttons_3', 'register_button_3');
  51. add_filter('mce_buttons_4', 'register_button_4');
  52. }
  53. }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement