From 52cc52a8f4ff8a1bd331dcafde71020bcbbb3951 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Sun, 9 Jan 2022 23:12:06 +0000 Subject: [PATCH] Help/About: Change the HTML `title` of Themes Screen and add related HelpHub Docs link. This change replaces the title of the Appearance Themes Screen to make it consistent with the main heading of the screen and with other Admin screens. It also adds a link to the related HelpHub Documentation in the Help tab of the screen. Props jdy68. Fixes #54707. git-svn-id: https://develop.svn.wordpress.org/trunk@52543 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/themes.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/themes.php b/src/wp-admin/themes.php index c98631caa852..e38412fd36bc 100644 --- a/src/wp-admin/themes.php +++ b/src/wp-admin/themes.php @@ -124,7 +124,7 @@ } // Used in the HTML title tag. -$title = __( 'Manage Themes' ); +$title = __( 'Themes' ); $parent_file = 'themes.php'; // Help tab: Overview. @@ -205,6 +205,7 @@ get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . '

' . __( 'Documentation on Using Themes' ) . '

' . + '

' . __( 'Documentation on the Appearance Themes Screen' ) . '

' . $help_sidebar_autoupdates . '

' . __( 'Support' ) . '

' );