Guest User

Untitled

a guest
Dec 12th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // Hide Admin Menu Editor
  2. function hide_plugin() {
  3. global $wp_list_table;
  4. $hidearr = array('admin-menu-editor/menu-editor.php');
  5. $myplugins = $wp_list_table->items;
  6. foreach ($myplugins as $key => $val) {
  7. if (in_array($key,$hidearr)) {
  8. unset($wp_list_table->items[$key]);
  9. }
  10. }
  11. }
  12.  
  13. add_action('pre_current_active_plugins', 'hide_plugin');
Add Comment
Please, Sign In to add comment