Changeset 31456 for trunk/src/wp-includes/admin-bar.php
- Timestamp:
- 02/13/2015 08:19:09 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/admin-bar.php
r31455 r31456 101 101 $wp_admin_bar->add_menu( array( 102 102 'id' => 'wp-logo', 103 'title' => '<span class="ab-icon"></span> ',103 'title' => '<span class="ab-icon"></span><span class="screen-reader-text">' . __( 'About WordPress' ) . '</span>', 104 104 'href' => self_admin_url( 'about.php' ), 105 'meta' => array(106 'title' => __('About WordPress'),107 ),108 105 ) ); 109 106 … … 114 111 'id' => 'about', 115 112 'title' => __('About WordPress'), 116 'href' => self_admin_url( 'about.php' ),113 'href' => self_admin_url( 'about.php' ), 117 114 ) ); 118 115 } … … 194 191 'meta' => array( 195 192 'class' => $class, 196 'title' => __('My Account'),197 193 ), 198 194 ) ); … … 605 601 'title' => $title, 606 602 'href' => admin_url( current( array_keys( $actions ) ) ), 607 'meta' => array(608 'title' => _x( 'Add New', 'admin bar menu group label' ),609 ),610 603 ) ); 611 604
Note: See TracChangeset
for help on using the changeset viewer.