mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 07:40:07 +00:00
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. git-svn-id: https://develop.svn.wordpress.org/trunk@55412 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -5847,7 +5847,7 @@ function _doing_it_wrong( $function_name, $message, $version ) {
|
||||
$message .= ' ' . sprintf(
|
||||
/* translators: %s: Documentation URL. */
|
||||
__( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ),
|
||||
__( 'https://wordpress.org/support/article/debugging-in-wordpress/' )
|
||||
__( 'https://wordpress.org/documentation/article/debugging-in-wordpress/' )
|
||||
);
|
||||
|
||||
trigger_error(
|
||||
@@ -5867,7 +5867,7 @@ function _doing_it_wrong( $function_name, $message, $version ) {
|
||||
|
||||
$message .= sprintf(
|
||||
' Please see <a href="%s">Debugging in WordPress</a> for more information.',
|
||||
'https://wordpress.org/support/article/debugging-in-wordpress/'
|
||||
'https://wordpress.org/documentation/article/debugging-in-wordpress/'
|
||||
);
|
||||
|
||||
trigger_error(
|
||||
@@ -8177,7 +8177,7 @@ function wp_get_update_https_url() {
|
||||
*/
|
||||
function wp_get_default_update_https_url() {
|
||||
/* translators: Documentation explaining HTTPS and why it should be used. */
|
||||
return __( 'https://wordpress.org/support/article/why-should-i-use-https/' );
|
||||
return __( 'https://wordpress.org/documentation/article/why-should-i-use-https/' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user