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. Built from https://develop.svn.wordpress.org/trunk@52053 git-svn-id: http://core.svn.wordpress.org/trunk@51645 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d8da1f0ac9
commit
8dfb59d4de
|
@ -233,9 +233,16 @@ do_action( 'customize_controls_head' );
|
||||||
<button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button>
|
<button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="customize-panel-description">
|
<div class="customize-panel-description">
|
||||||
|
<p>
|
||||||
<?php
|
<?php
|
||||||
_e( 'The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements.' );
|
_e( 'The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements.' );
|
||||||
?>
|
?>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
_e( '<a href="https://wordpress.org/support/article/appearance-customize-screen/">Documentation on Customizer</a>' );
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,21 @@ add_filter(
|
||||||
|
|
||||||
$action = isset( $_POST['action'] ) ? $_POST['action'] : '';
|
$action = isset( $_POST['action'] ) ? $_POST['action'] : '';
|
||||||
|
|
||||||
|
get_current_screen()->add_help_tab(
|
||||||
|
array(
|
||||||
|
'id' => 'overview',
|
||||||
|
'title' => __( 'Overview' ),
|
||||||
|
'content' =>
|
||||||
|
'<p>' . __( 'The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.' ) . '</p>' .
|
||||||
|
'<p>' . __( '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.' ) . '</p>'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
get_current_screen()->set_help_sidebar(
|
||||||
|
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||||
|
'<p>' . __( '<a href="https://wordpress.org/support/article/settings-privacy-screen/">Documentation on Privacy Settings</a>' ) . '</p>'
|
||||||
|
);
|
||||||
|
|
||||||
if ( ! empty( $action ) ) {
|
if ( ! empty( $action ) ) {
|
||||||
check_admin_referer( $action );
|
check_admin_referer( $action );
|
||||||
|
|
||||||
|
|
|
@ -74,6 +74,22 @@ if ( 'update_https' === $action ) {
|
||||||
|
|
||||||
$health_check_site_status = WP_Site_Health::get_instance();
|
$health_check_site_status = WP_Site_Health::get_instance();
|
||||||
|
|
||||||
|
get_current_screen()->add_help_tab(
|
||||||
|
array(
|
||||||
|
'id' => 'overview',
|
||||||
|
'title' => __( 'Overview' ),
|
||||||
|
'content' =>
|
||||||
|
'<p>' . __( 'This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.' ) . '</p>' .
|
||||||
|
'<p>' . __( 'In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.' ) . '</p>' .
|
||||||
|
'<p>' . __( '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.' ) . '</p>'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
get_current_screen()->set_help_sidebar(
|
||||||
|
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||||
|
'<p>' . __( '<a href="https://wordpress.org/support/article/site-health-screen/">Documentation on Site Health tool</a>' ) . '</p>'
|
||||||
|
);
|
||||||
|
|
||||||
// Start by checking if this is a special request checking for the existence of certain filters.
|
// 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();
|
$health_check_site_status->check_wp_version_check_exists();
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ get_current_screen()->add_help_tab(
|
||||||
get_current_screen()->set_help_sidebar(
|
get_current_screen()->set_help_sidebar(
|
||||||
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||||
'<p>' . __( '<a href="https://developer.wordpress.org/themes/">Documentation on Theme Development</a>' ) . '</p>' .
|
'<p>' . __( '<a href="https://developer.wordpress.org/themes/">Documentation on Theme Development</a>' ) . '</p>' .
|
||||||
'<p>' . __( '<a href="https://wordpress.org/support/article/using-themes/">Documentation on Using Themes</a>' ) . '</p>' .
|
'<p>' . __( '<a href="https://wordpress.org/support/article/appearance-editor-screen/">Documentation on Editing Themes</a>' ) . '</p>' .
|
||||||
'<p>' . __( '<a href="https://wordpress.org/support/article/editing-files/">Documentation on Editing Files</a>' ) . '</p>' .
|
'<p>' . __( '<a href="https://wordpress.org/support/article/editing-files/">Documentation on Editing Files</a>' ) . '</p>' .
|
||||||
'<p>' . __( '<a href="https://developer.wordpress.org/themes/basics/template-tags/">Documentation on Template Tags</a>' ) . '</p>' .
|
'<p>' . __( '<a href="https://developer.wordpress.org/themes/basics/template-tags/">Documentation on Template Tags</a>' ) . '</p>' .
|
||||||
'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
|
'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.9-alpha-52052';
|
$wp_version = '5.9-alpha-52053';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue