From d31461ceb9409b787fa2addf431587d44fc5ee2a Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 7 Oct 2008 20:40:21 +0000 Subject: [PATCH] Move Help menu to the end git-svn-id: https://develop.svn.wordpress.org/trunk@9094 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/menu.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wp-admin/menu.php b/wp-admin/menu.php index b9ee194f57..fe6fccbbbf 100644 --- a/wp-admin/menu.php +++ b/wp-admin/menu.php @@ -151,6 +151,10 @@ foreach ( $menu as $id => $data ) { do_action('admin_menu', ''); +// Move the help menu to the end +$menu[] = $menu[55]; +unset($menu[55]); + // Remove menus that have no accessible submenus and require privs that the user does not have. // Run re-parent loop again. foreach ( $menu as $id => $data ) {