Skip to content

Instantly share code, notes, and snippets.

@nfsarmento
Created June 7, 2019 10:26
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 nfsarmento/6ac5abfe832928e9d3066207030b3eb7 to your computer and use it in GitHub Desktop.
Save nfsarmento/6ac5abfe832928e9d3066207030b3eb7 to your computer and use it in GitHub Desktop.
Debug WordPress menu
/**
* Debug WordPress menu
*/
add_action( 'admin_init', 'ns_debug_admin_menu' );
function ns_debug_admin_menu() {
echo '<pre>' . print_r( $GLOBALS[ 'menu' ], TRUE) . '</pre>';
echo '<style> pre{margin-left: 240px;}</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment