Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. /*-----------------------------------------------------------------------------------*/
  2. /* Remove Unwanted Admin Menu Items */
  3. /*-----------------------------------------------------------------------------------*/
  4.  
  5. function remove_admin_menu_items() {
  6. // Edit only the following line to remove the items you don´t need
  7. $remove_menu_items = array(__('Comments'),__('Links'),__('Posts'));
  8. global $menu;
  9. end ($menu);
  10. while (prev($menu)){
  11. $item = explode(' ',$menu[key($menu)][0]);
  12. if(in_array($item[0] != NULL?$item[0]:"" , $remove_menu_items)){
  13. unset($menu[key($menu)]);}
  14. }
  15. }
  16.  
  17. add_action('admin_menu', 'remove_admin_menu_items');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement