Skip to content

Instantly share code, notes, and snippets.

@bradleysa
Created April 22, 2022 08:11
Show Gist options
  • Save bradleysa/016315ed1e0e51e31c319bc2d985547a to your computer and use it in GitHub Desktop.
Save bradleysa/016315ed1e0e51e31c319bc2d985547a to your computer and use it in GitHub Desktop.
Remove menu links from the Admin menu
add_action( 'admin_menu', 'remove_menus', 999 );
function remove_menus() {
remove_menu_page( 'edit-comments.php' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment