Skip to content

Instantly share code, notes, and snippets.

@nickihastings
Last active April 12, 2021 20:54
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 nickihastings/fcd472a84d0700c3cb74bb4dc15d5b41 to your computer and use it in GitHub Desktop.
Save nickihastings/fcd472a84d0700c3cb74bb4dc15d5b41 to your computer and use it in GitHub Desktop.
Debug admin menu - print to screen
<?php
//this will print the admin menu in array form so you can determine slug names from value [2] for use with remove_menu_page()
add_action( 'admin_init', 'print_admin_menu' );
function print_admin_menu() {
echo '<pre>' . print_r( $GLOBALS[ 'menu' ], TRUE) . '</pre>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment