diff --git a/src/wp-includes/admin-bar.php b/src/wp-includes/admin-bar.php
index 9bb26e7ed7..5fe00e9801 100644
|
a
|
b
|
function wp_admin_bar_site_menu( $wp_admin_bar ) {
|
| 453 | 453 | } |
| 454 | 454 | |
| 455 | 455 | /** |
| 456 | | * Adds the "Edit site" link to the Toolbar. |
| | 456 | * Adds the "Edit Site" link to the Toolbar. |
| 457 | 457 | * |
| 458 | 458 | * @since 5.9.0 |
| 459 | 459 | * @since 6.3.0 Added `$_wp_current_template_id` global for editing of current template directly from the admin bar. |
| … |
… |
function wp_admin_bar_edit_site_menu( $wp_admin_bar ) {
|
| 479 | 479 | $wp_admin_bar->add_node( |
| 480 | 480 | array( |
| 481 | 481 | 'id' => 'site-editor', |
| 482 | | 'title' => __( 'Edit site' ), |
| | 482 | 'title' => __( 'Edit Site' ), |
| 483 | 483 | 'href' => add_query_arg( |
| 484 | 484 | array( |
| 485 | 485 | 'postType' => 'wp_template', |