Skip to content

Instantly share code, notes, and snippets.

@Wendersonandes
Created May 2, 2020 13:45
Show Gist options
  • Save Wendersonandes/b9de9c3ae8853752f204892d561ecc14 to your computer and use it in GitHub Desktop.
Save Wendersonandes/b9de9c3ae8853752f204892d561ecc14 to your computer and use it in GitHub Desktop.
Debug wordpress admin menu array
add_action( 'admin_init', 'wpse_136058_debug_admin_menu' );
function wpse_136058_debug_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