]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/menu-header.php
WordPress 4.2.4-scripts
[autoinstalls/wordpress.git] / wp-admin / menu-header.php
index dea73320f064955102c1499deb24c065da773435..d73fe9bd3150b0222d479f400baa99404ab3f939 100644 (file)
@@ -60,7 +60,7 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) {
                        $first = false;
                }
 
-               $submenu_items = false;
+               $submenu_items = array();
                if ( ! empty( $submenu[$item[2]] ) ) {
                        $class[] = 'wp-has-submenu';
                        $submenu_items = $submenu[$item[2]];
@@ -174,7 +174,7 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) {
                                                $class[] = 'current';
                                // If plugin_page is set the parent must either match the current page or not physically exist.
                                // This allows plugin pages with the same hook to exist under different parents.
-                               } else if (
+                               } elseif (
                                        ( ! isset( $plugin_page ) && $self == $sub_item[2] ) ||
                                        ( isset( $plugin_page ) && $plugin_page == $sub_item[2] && ( $item[2] == $self_type || $item[2] == $self || file_exists($menu_file) === false ) )
                                ) {
@@ -219,9 +219,12 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) {
 
 ?>
 
+<div id="adminmenumain" role="navigation" aria-label="<?php esc_attr_e( 'Main menu' ); ?>">
+<a href="#wpbody-content" class="screen-reader-shortcut"><?php _e( 'Skip to main content' ); ?></a>
+<a href="#wp-toolbar" class="screen-reader-shortcut"><?php _e( 'Skip to toolbar' ); ?></a>
 <div id="adminmenuback"></div>
 <div id="adminmenuwrap">
-<ul id="adminmenu" role="navigation">
+<ul id="adminmenu">
 
 <?php
 
@@ -236,3 +239,4 @@ do_action( 'adminmenu' );
 ?>
 </ul>
 </div>
+</div>