Make WordPress Core


Ignore:
Timestamp:
02/23/2023 10:36:33 AM (21 months ago)
Author:
audrasjb
Message:

Help/About: Use the new /documentation/ URLs for HelpHub links in WordPress Admin.

As https://wordpress.org/support/ was redirected to https://wordpress.org/documentation/, this changeset replaces various /support/article/* links with /documentation/article/* to avoid an extra redirect.

This also updates links to Support Forums by replacing https://wordpress.org/support/ URLs with https://wordpress.org/support/forums/.

Props SergeyBiryukov, audrasjb, dhrupo, hasanmisbah, sakibmd, sabernhardt.
See #57726.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/options-writing.php

    r55347 r55412  
    5151get_current_screen()->set_help_sidebar(
    5252    '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    53     '<p>' . __( '<a href="https://wordpress.org/support/article/settings-writing-screen/">Documentation on Writing Settings</a>' ) . '</p>' .
    54     '<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
     53    '<p>' . __( '<a href="https://wordpress.org/documentation/article/settings-writing-screen/">Documentation on Writing Settings</a>' ) . '</p>' .
     54    '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'
    5555);
    5656
     
    214214            /* translators: %s: Documentation URL. */
    215215            __( 'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the <a href="%s">Update Services</a> documentation article. Separate multiple service URLs with line breaks.' ),
    216             __( 'https://wordpress.org/support/article/update-services/' )
     216            __( 'https://wordpress.org/documentation/article/update-services/' )
    217217        );
    218218        ?>
     
    228228            /* translators: 1: Documentation URL, 2: URL to Reading Settings screen. */
    229229            __( 'WordPress is not notifying any <a href="%1$s">Update Services</a> because of your site&#8217;s <a href="%2$s">visibility settings</a>.' ),
    230             __( 'https://wordpress.org/support/article/update-services/' ),
     230            __( 'https://wordpress.org/documentation/article/update-services/' ),
    231231            'options-reading.php'
    232232        );
Note: See TracChangeset for help on using the changeset viewer.