Skip to content

Instantly share code, notes, and snippets.

@JohnBunka
Created May 1, 2014 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohnBunka/f58858ccb3e9204b8117 to your computer and use it in GitHub Desktop.
Save JohnBunka/f58858ccb3e9204b8117 to your computer and use it in GitHub Desktop.
Remove WordPress Admin Links Menu
//* NOTE: Add to functions.php or to a functionality plugin
//* Remove Links Menu
add_action( 'admin_menu', 'my_remove_menu_pages' );
function my_remove_menu_pages() {
remove_menu_page('link-manager.php');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment