Skip to content

Instantly share code, notes, and snippets.

@tomaskavalek
Created November 16, 2020 17:57
Show Gist options
  • Save tomaskavalek/fdcfcbbafb5e445430f53d8193a3ccae to your computer and use it in GitHub Desktop.
Save tomaskavalek/fdcfcbbafb5e445430f53d8193a3ccae to your computer and use it in GitHub Desktop.
Debug WordPress admin menu – on dashboard only
<?php
if ( ! function_exists('debug_admin_menus')) {
function debug_admin_menus()
{
global $submenu, $menu, $pagenow;
if (current_user_can('manage_options')) {
if ($pagenow === 'index.php') {
echo '<pre>';
print_r($menu);
echo '</pre>';
echo '<pre>';
print_r($submenu);
echo '</pre>';
}
}
}
add_action('admin_notices', 'debug_admin_menus');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment