Skip to content

Instantly share code, notes, and snippets.

@bryanwillis
Created June 6, 2014 03:49
Show Gist options
  • Save bryanwillis/bceabac46227c88949f6 to your computer and use it in GitHub Desktop.
Save bryanwillis/bceabac46227c88949f6 to your computer and use it in GitHub Desktop.
Show all the admin menus in an array for developing purposes
function edit_admin_menus() {
global $submenu, $menu, $pagenow;
if( $pagenow == 'index.php' ) {
echo '<pre>'; print_r( $menu ); echo '</pre>';
echo '<pre>'; print_r( $submenu ); echo '</pre>';
}
}
add_action( 'admin_notices', 'edit_admin_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment