Make sure Widgets menu comes after Themes. see #4169

git-svn-id: http://svn.automattic.com/wordpress/branches/2.2@5400 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-05-06 20:35:51 +00:00
parent 68866e9571
commit 061bad455b
2 changed files with 5 additions and 2 deletions

View File

@ -69,6 +69,8 @@ $submenu['plugins.php'][10] = array(__('Plugin Editor'), 'edit_plugins', 'plugin
$submenu['themes.php'][5] = array(__('Themes'), 'switch_themes', 'themes.php');
$submenu['themes.php'][10] = array(__('Theme Editor'), 'edit_themes', 'theme-editor.php');
do_action('_admin_menu');
// Create list of page plugin hook names.
foreach ($menu as $menu_page) {
$admin_page_hooks[$menu_page[2]] = sanitize_title($menu_page[0]);

View File

@ -1490,13 +1490,14 @@ function wp_parse_args( $args, $defaults = '' ) {
function wp_maybe_load_widgets() {
if ( !function_exists( 'dynamic_sidebar' ) ) {
require_once ABSPATH . WPINC . '/widgets.php';
add_action( 'admin_head', 'wp_widgets_admin_page' );
add_action( '_admin_menu', 'wp_widgets_add_menu' );
}
}
function wp_widgets_admin_page() {
function wp_widgets_add_menu() {
global $submenu;
$submenu['themes.php'][7] = array( __( 'Widgets' ), 'edit_themes', 'widgets.php' );
ksort($submenu['themes.php'], SORT_NUMERIC);
}
?>