From 10838cb5a009a95de13fa4d2f50afabcb7ca26c7 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 7 Feb 2023 17:42:24 +0000 Subject: [PATCH] Editor: Remove "beta" label from Site Editor submenu item. One year later, the beta phase is finally over. Props priethor, matveb, audrasjb, hellofromtonya. Fixes #57654. Built from https://develop.svn.wordpress.org/trunk@55281 git-svn-id: http://core.svn.wordpress.org/trunk@54814 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/menu.php | 10 +--------- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 10 deletions(-) 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.