diff --git a/wp-admin/menu.php b/wp-admin/menu.php index 05da5f213a..bd9e2c7779 100644 --- a/wp-admin/menu.php +++ b/wp-admin/menu.php @@ -203,15 +203,7 @@ if ( ! is_multisite() && current_user_can( 'update_themes' ) ) { $submenu['themes.php'][5] = array( sprintf( __( 'Themes %s' ), $count ), $appearance_cap, 'themes.php' ); if ( wp_is_block_theme() ) { - $submenu['themes.php'][6] = array( - sprintf( - /* translators: %s: "beta" label */ - __( 'Editor %s' ), - '' . __( 'beta' ) . '' - ), - 'edit_theme_options', - 'site-editor.php', - ); + $submenu['themes.php'][6] = array( _x( 'Editor', 'site editor menu item' ), 'edit_theme_options', 'site-editor.php' ); } if ( ! wp_is_block_theme() && current_theme_supports( 'block-template-parts' ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 7a900d63eb..2b23374232 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-55280'; +$wp_version = '6.2-alpha-55281'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.