Make sure Widgets menu comes after Themes. see #4169

git-svn-id: https://develop.svn.wordpress.org/trunk@5401 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-05-06 20:36:11 +00:00
parent 0568d96794
commit e83f137798
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

@ -1506,13 +1506,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);
}
?>