Skip to content

Instantly share code, notes, and snippets.

@markbosky
Created December 30, 2021 18:48
Show Gist options
  • Save markbosky/0af1a0a6bb9e51c60bb537d7f226bdce to your computer and use it in GitHub Desktop.
Save markbosky/0af1a0a6bb9e51c60bb537d7f226bdce to your computer and use it in GitHub Desktop.
WordPress - Remove Comments Menu from Admin Area
/**
* Removes comments from the left hand navigation in the admin.
*/
add_action( 'admin_menu', 'wp_remove_menus' );
function wp_remove_menus() {
global $menu;
global $submenu;
remove_menu_page( 'edit-comments.php' );
echo '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment