-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Rename "Edit site" to "Design" and make it consistently visi…
…ble in the admin bar
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
/** | ||
* Changes to the WordPress admin bar. | ||
* | ||
* @package gutenberg | ||
*/ | ||
|
||
/** | ||
* Adds the "Design" link to the Toolbar. | ||
* | ||
* @since 6.7.0 | ||
* | ||
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance. | ||
*/ | ||
function gutenberg_admin_bar_design_menu( $wp_admin_bar ) { | ||
global $_wp_current_template_id; | ||
|
||
// Don't show if a block theme is not activated. | ||
if ( ! wp_is_block_theme() ) { | ||
return; | ||
} | ||
|
||
// Don't show for users who can't edit theme options. | ||
if ( ! current_user_can( 'edit_theme_options' ) ) { | ||
return; | ||
} | ||
|
||
$wp_admin_bar->add_node( | ||
array( | ||
'id' => 'site-editor', | ||
'title' => __( 'Design' ), | ||
'href' => admin_url( 'site-editor.php' ), | ||
) | ||
); | ||
} | ||
remove_action( 'admin_bar_menu', 'wp_admin_bar_edit_site_menu', 42 ); | ||
add_action( 'admin_bar_menu', 'gutenberg_admin_bar_design_menu', 43 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters