Skip to content

Instantly share code, notes, and snippets.

@wpscholar
Last active September 20, 2017 23:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wpscholar/1243376 to your computer and use it in GitHub Desktop.
Save wpscholar/1243376 to your computer and use it in GitHub Desktop.
Remove unwanted pages from the WordPress admin menu
<?php
/**
* Remove unwanted pages from the WordPress admin menu
*/
function my_admin_menu() {
remove_menu_page('link-manager.php');
}
add_action( 'admin_menu', 'my_admin_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment