From a2015573ebdac62c114696764869e5a618825003 Mon Sep 17 00:00:00 2001 From: John James Jacoby Date: Mon, 8 Nov 2021 21:41:43 +0000 Subject: [PATCH] Admin/Help: add docs links to several screens. This change intends to better guide users towards many of the useful resources available on WordPress.org. * Appearance/Customizer - Add link to Customizer docs. * Appearance/Editor - Improve link text & destination. * Privacy Settings - Link to Privacy Settings docs. * Site Health - Link to Site Health docs. Props audrasjb, jdy68, webcommsat. Fixes #54357. git-svn-id: https://develop.svn.wordpress.org/trunk@52053 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/customize.php | 13 ++++++++++--- src/wp-admin/options-privacy.php | 15 +++++++++++++++ src/wp-admin/site-health.php | 16 ++++++++++++++++ src/wp-admin/theme-editor.php | 2 +- 4 files changed, 42 insertions(+), 4 deletions(-) diff --git a/src/wp-admin/customize.php b/src/wp-admin/customize.php index 7d4fb9fd99..aed0646336 100644 --- a/src/wp-admin/customize.php +++ b/src/wp-admin/customize.php @@ -233,9 +233,16 @@ do_action( 'customize_controls_head' );
- +

+ +

+

+ Documentation on Customizer' ); + ?> +

diff --git a/src/wp-admin/options-privacy.php b/src/wp-admin/options-privacy.php index 0b0ca77ee9..0e135caa48 100644 --- a/src/wp-admin/options-privacy.php +++ b/src/wp-admin/options-privacy.php @@ -29,6 +29,21 @@ add_filter( $action = isset( $_POST['action'] ) ? $_POST['action'] : ''; +get_current_screen()->add_help_tab( + array( + 'id' => 'overview', + 'title' => __( 'Overview' ), + 'content' => + '

' . __( 'The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.' ) . '

' . + '

' . __( 'This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.' ) . '

' + ) +); + +get_current_screen()->set_help_sidebar( + '

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

' . + '

' . __( 'Documentation on Privacy Settings' ) . '

' +); + if ( ! empty( $action ) ) { check_admin_referer( $action ); diff --git a/src/wp-admin/site-health.php b/src/wp-admin/site-health.php index c31e4018eb..4a930d07a5 100644 --- a/src/wp-admin/site-health.php +++ b/src/wp-admin/site-health.php @@ -74,6 +74,22 @@ if ( 'update_https' === $action ) { $health_check_site_status = WP_Site_Health::get_instance(); +get_current_screen()->add_help_tab( + array( + 'id' => 'overview', + 'title' => __( 'Overview' ), + 'content' => + '

' . __( 'This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.' ) . '

' . + '

' . __( 'In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.' ) . '

' . + '

' . __( 'In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, help solve problems on your site when obtaining support.' ) . '

' + ) +); + +get_current_screen()->set_help_sidebar( + '

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

' . + '

' . __( 'Documentation on Site Health tool' ) . '

' +); + // Start by checking if this is a special request checking for the existence of certain filters. $health_check_site_status->check_wp_version_check_exists(); diff --git a/src/wp-admin/theme-editor.php b/src/wp-admin/theme-editor.php index 68228edc40..644084318b 100644 --- a/src/wp-admin/theme-editor.php +++ b/src/wp-admin/theme-editor.php @@ -50,7 +50,7 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '

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

' . '

' . __( 'Documentation on Theme Development' ) . '

' . - '

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

' . + '

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

' . '

' . __( 'Documentation on Editing Files' ) . '

' . '

' . __( 'Documentation on Template Tags' ) . '

' . '

' . __( 'Support' ) . '

'