Use an 'appearance' group in the admin bar. fixes #19245.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19434 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a854e80a19
commit
18e0faf83e
|
@ -538,23 +538,25 @@ function wp_admin_bar_comments_menu( $wp_admin_bar ) {
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
function wp_admin_bar_appearance_menu( $wp_admin_bar ) {
|
function wp_admin_bar_appearance_menu( $wp_admin_bar ) {
|
||||||
|
$wp_admin_bar->add_group( array( 'parent' => 'site-name', 'id' => 'appearance' ) );
|
||||||
|
|
||||||
if ( current_user_can( 'switch_themes' ) || current_user_can( 'edit_theme_options' ) )
|
if ( current_user_can( 'switch_themes' ) || current_user_can( 'edit_theme_options' ) )
|
||||||
$wp_admin_bar->add_menu( array( 'parent' => 'site-name', 'id' => 'themes', 'title' => __('Themes'), 'href' => admin_url('themes.php') ) );
|
$wp_admin_bar->add_menu( array( 'parent' => 'appearance', 'id' => 'themes', 'title' => __('Themes'), 'href' => admin_url('themes.php') ) );
|
||||||
|
|
||||||
if ( ! current_user_can( 'edit_theme_options' ) )
|
if ( ! current_user_can( 'edit_theme_options' ) )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if ( current_theme_supports( 'widgets' ) )
|
if ( current_theme_supports( 'widgets' ) )
|
||||||
$wp_admin_bar->add_menu( array( 'parent' => 'site-name', 'id' => 'widgets', 'title' => __('Widgets'), 'href' => admin_url('widgets.php') ) );
|
$wp_admin_bar->add_menu( array( 'parent' => 'appearance', 'id' => 'widgets', 'title' => __('Widgets'), 'href' => admin_url('widgets.php') ) );
|
||||||
|
|
||||||
if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) )
|
if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) )
|
||||||
$wp_admin_bar->add_menu( array( 'parent' => 'site-name', 'id' => 'menus', 'title' => __('Menus'), 'href' => admin_url('nav-menus.php') ) );
|
$wp_admin_bar->add_menu( array( 'parent' => 'appearance', 'id' => 'menus', 'title' => __('Menus'), 'href' => admin_url('nav-menus.php') ) );
|
||||||
|
|
||||||
if ( current_theme_supports( 'custom-background' ) )
|
if ( current_theme_supports( 'custom-background' ) )
|
||||||
$wp_admin_bar->add_menu( array( 'parent' => 'site-name', 'id' => 'background', 'title' => __('Background'), 'href' => admin_url('themes.php?page=custom-background') ) );
|
$wp_admin_bar->add_menu( array( 'parent' => 'appearance', 'id' => 'background', 'title' => __('Background'), 'href' => admin_url('themes.php?page=custom-background') ) );
|
||||||
|
|
||||||
if ( current_theme_supports( 'custom-header' ) )
|
if ( current_theme_supports( 'custom-header' ) )
|
||||||
$wp_admin_bar->add_menu( array( 'parent' => 'site-name', 'id' => 'header', 'title' => __('Header'), 'href' => admin_url('themes.php?page=custom-header') ) );
|
$wp_admin_bar->add_menu( array( 'parent' => 'appearance', 'id' => 'header', 'title' => __('Header'), 'href' => admin_url('themes.php?page=custom-header') ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -126,16 +126,9 @@ class WP_Admin_Bar {
|
||||||
public function render() {
|
public function render() {
|
||||||
global $is_IE, $is_iphone;
|
global $is_IE, $is_iphone;
|
||||||
|
|
||||||
$back_compat_parents = array(
|
|
||||||
'appearance' => 'site-name',
|
|
||||||
);
|
|
||||||
|
|
||||||
// Link nodes to parents.
|
// Link nodes to parents.
|
||||||
foreach ( $this->nodes as $node ) {
|
foreach ( $this->nodes as $node ) {
|
||||||
|
|
||||||
if ( isset( $back_compat_parents[ $node->parent ] ) )
|
|
||||||
$node->parent = $back_compat_parents[ $node->parent ];
|
|
||||||
|
|
||||||
// Handle root menu items
|
// Handle root menu items
|
||||||
if ( empty( $node->parent ) ) {
|
if ( empty( $node->parent ) ) {
|
||||||
$parent = $this->root;
|
$parent = $this->root;
|
||||||
|
|
Loading…
Reference in New Issue