Admin bar 'W' shakeup. About This Version is now About WordPress. Credits and Freedoms will now become tabs on the post-update screen. see #18742.

git-svn-id: https://develop.svn.wordpress.org/trunk@19128 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-11-03 04:53:00 +00:00
parent 3700b57fdc
commit 5a8176ea36
1 changed files with 2 additions and 18 deletions

View File

@ -82,29 +82,13 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) {
) );
if ( is_user_logged_in() ) {
// Add "About This Version" link
// Add "About WordPress" link
$wp_admin_bar->add_menu( array(
'parent' => 'wp-logo',
'id' => 'about',
'title' => __('About This Version'),
'title' => __('About WordPress'),
'href' => admin_url('about.php'),
) );
// Add freedoms link
$wp_admin_bar->add_menu( array(
'parent' => 'wp-logo',
'id' => 'freedoms',
'title' => __('Freedoms'),
'href' => admin_url('freedoms.php'),
) );
// Add credits link
$wp_admin_bar->add_menu( array(
'parent' => 'wp-logo',
'id' => 'credits',
'title' => __('Credits'),
'href' => admin_url('credits.php'),
) );
}
// Add secondary menu.