Skip to content

Instantly share code, notes, and snippets.

@amanhstu
Last active July 17, 2016 16:29
Show Gist options
  • Save amanhstu/a91a8a8c4af14b91dd290f1c1564a481 to your computer and use it in GitHub Desktop.
Save amanhstu/a91a8a8c4af14b91dd290f1c1564a481 to your computer and use it in GitHub Desktop.
<?php
function remove_admin_menu_items() {
$remove_menu_items = array(__('Links'));
global $menu;
end ($menu);
while (prev($menu)){
$item = explode(' ',$menu[key($menu)][0]);
if(in_array($item[0] != NULL?$item[0]:"" , $remove_menu_items)){
unset($menu[key($menu)]);}
}
}
add_action('admin_menu', 'remove_admin_menu_items'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment