From 34b67efc8d8c56807caf7db36ef3f4858991da1c Mon Sep 17 00:00:00 2001 From: Ben Dwyer Date: Fri, 4 Sep 2026 13:21:35 +0100 Subject: [PATCH] Administration: Rename the Site Editor menu item to "Edit Site". Aligns the Appearance submenu label for `site-editor.php` with the "Edit Site" node in the admin bar, so the same action is named consistently across the admin. Co-Authored-By: Claude Opus 5 (1M context) --- src/wp-admin/menu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/menu.php b/src/wp-admin/menu.php index 2a3430ebc3df8..76b649f57ceb1 100644 --- a/src/wp-admin/menu.php +++ b/src/wp-admin/menu.php @@ -225,7 +225,7 @@ $submenu['themes.php'][5] = array( sprintf( __( 'Themes %s' ), $count ), $appearance_capability, 'themes.php' ); if ( wp_is_block_theme() ) { - $submenu['themes.php'][6] = array( _x( 'Editor', 'site editor menu item' ), 'edit_theme_options', 'site-editor.php' ); + $submenu['themes.php'][6] = array( _x( 'Edit Site', 'site editor menu item' ), 'edit_theme_options', 'site-editor.php' ); } else { $supports_stylebook = ( current_theme_supports( 'editor-styles' ) || wp_theme_has_theme_json() );