From b1f084389c90d4a510aa0916daba91b569421270 Mon Sep 17 00:00:00 2001 From: joedolson Date: Tue, 7 Feb 2023 18:50:01 +0000 Subject: [PATCH] Administration: Match title tag to menu item for Editor. Removes 'beta' from the title element for the site editor. Follow up to [55281]. Props kebbet. Fixes #57654. git-svn-id: https://develop.svn.wordpress.org/trunk@55288 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/site-editor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/site-editor.php b/src/wp-admin/site-editor.php index 016245a677..23d44d7ea2 100644 --- a/src/wp-admin/site-editor.php +++ b/src/wp-admin/site-editor.php @@ -46,7 +46,7 @@ if ( $home_template && empty( $_GET['postType'] ) && empty( $_GET['postId'] ) ) } // Used in the HTML title tag. -$title = __( 'Editor (beta)' ); +$title = _x( 'Editor', 'site editor title tag' ); $parent_file = 'themes.php'; // Flag that we're loading the block editor.