Disable top-level menus from Admin Panel 1
<?php
function remove_menu_items() {
global $menu;
unset($menu[15]); // Removes 'Links'.
unset($menu[25]); // Removes 'Comments'.
}
add_action('admin_menu', 'remove_menu_items');
?>
Instructions:
This snippet disables top-level menus, like Comments, from the main menu in the Admin Panel. The menu-ID:s are found in wp-admin/menu.php.