Order Admin sub-menu items?
The filter ‘custom_menu_order’ will not work on the menu order because apply_filters in wp-admin/includes/menu.php supplies false as the filtered content. You can try changing false to $menu and the filter works grand. Since we obviously can’t touch the core, here’s how I got it to work: function custom_menu_order(){ global $submenu; $find_page=”edit.php”; $find_sub = ‘Post Tags’; … Read more