Make WordPress Core


Ignore:
Timestamp:
02/23/2023 10:36:33 AM (22 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-includes/functions.php

    r55398 r55412  
    58485848                /* translators: %s: Documentation URL. */
    58495849                __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ),
    5850                 __( 'https://wordpress.org/support/article/debugging-in-wordpress/' )
     5850                __( 'https://wordpress.org/documentation/article/debugging-in-wordpress/' )
    58515851            );
    58525852
     
    58685868            $message .= sprintf(
    58695869                ' Please see <a href="%s">Debugging in WordPress</a> for more information.',
    5870                 'https://wordpress.org/support/article/debugging-in-wordpress/'
     5870                'https://wordpress.org/documentation/article/debugging-in-wordpress/'
    58715871            );
    58725872
     
    81788178function wp_get_default_update_https_url() {
    81798179    /* translators: Documentation explaining HTTPS and why it should be used. */
    8180     return __( 'https://wordpress.org/support/article/why-should-i-use-https/' );
     8180    return __( 'https://wordpress.org/documentation/article/why-should-i-use-https/' );
    81818181}
    81828182
Note: See TracChangeset for help on using the changeset viewer.