elmanisero

remove admin menu

Aug 10th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function remove_menus () {
  2. global $menu;
  3. $restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins'));
  4. end ($menu);
  5. while (prev($menu)){
  6. $value = explode(' ',$menu[key($menu)][0]);
  7. if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);}
  8. }
  9. }
  10. add_action('admin_menu', 'remove_menus');
Add Comment
Please, Sign In to add comment