This finds the positions for the items on the WordPress admin menu. Use this function TEMPORARILY in your functions.php. It will display the array of arrays which make up the WP dashboard menu.
add_action('admin_init','isa_dump_admin_menu'); function isa_dump_admin_menu() { if (is_admin()) { header('Content-Type:text/plain'); var_dump($GLOBALS['menu']); exit; } }
Questions and Comments are Welcome