Skip to content

Instantly share code, notes, and snippets.

@mspalex
Created June 9, 2016 13:37
Show Gist options
  • Save mspalex/92be7e625480af8c4573394ff52b5747 to your computer and use it in GitHub Desktop.
Save mspalex/92be7e625480af8c4573394ff52b5747 to your computer and use it in GitHub Desktop.
<?php
/*
Dumps all the menus in the dashboard - array printing
to know the slugs and array positions
*/
if (!function_exists('debug_admin_menus')):
function debug_admin_menus() {
global $submenu, $menu, $pagenow;
if ( current_user_can('manage_options') ) { // ONLY DO THIS FOR ADMIN
if( $pagenow == 'index.php' ) { // PRINTS ON DASHBOARD
echo '<pre>'; print_r( $menu ); echo '</pre>'; // TOP LEVEL MENUS
echo '<pre>'; print_r( $submenu ); echo '</pre>'; // SUBMENUS
}
}
}
add_action( 'admin_notices', 'debug_admin_menus' );
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment