diff --git a/readme.html b/readme.html index 72bc2afe4b..74495e4ab6 100644 --- a/readme.html +++ b/readme.html @@ -47,7 +47,7 @@
WordPress can import from a number of systems. First you need to get WordPress installed and working as described above, before using our import tools.
+WordPress can import from a number of systems. First you need to get WordPress installed and working as described above, before using our import tools.
' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Comments' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Comments' ) . '
' . + '' . __( 'Support forums' ) . '
' ); wp_enqueue_script( 'comment' ); diff --git a/wp-admin/customize.php b/wp-admin/customize.php index f202bea13b..6597806e2f 100644 --- a/wp-admin/customize.php +++ b/wp-admin/customize.php @@ -250,7 +250,7 @@ do_action( 'customize_controls_head' );Documentation on Customizer' ); + _e( 'Documentation on Customizer' ); ?>
diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index ec6abc1972..e47e3c7ad4 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -207,10 +207,10 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Comments' ) . '
' . - '' . __( 'Documentation on Comment Spam' ) . '
' . - '' . __( 'Documentation on Keyboard Shortcuts' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Comments' ) . '
' . + '' . __( 'Documentation on Comment Spam' ) . '
' . + '' . __( 'Documentation on Keyboard Shortcuts' ) . '
' . + '' . __( 'Support forums' ) . '
' ); get_current_screen()->set_screen_reader_content( diff --git a/wp-admin/edit-form-advanced.php b/wp-admin/edit-form-advanced.php index 77160dd7d2..88bffa4995 100644 --- a/wp-admin/edit-form-advanced.php +++ b/wp-admin/edit-form-advanced.php @@ -316,8 +316,8 @@ if ( 'post' === $post_type ) { 'tools.php' ) . '' . '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Writing and Editing Posts' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Writing and Editing Posts' ) . '
' . + '' . __( 'Support forums' ) . '
' ); } elseif ( 'page' === $post_type ) { $about_pages = '' . __( 'Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.' ) . '
' . @@ -333,9 +333,9 @@ if ( 'post' === $post_type ) { get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Adding New Pages' ) . '
' . - '' . __( 'Documentation on Editing Pages' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Adding New Pages' ) . '
' . + '' . __( 'Documentation on Editing Pages' ) . '
' . + '' . __( 'Support forums' ) . '
' ); } elseif ( 'attachment' === $post_type ) { get_current_screen()->add_help_tab( @@ -352,14 +352,14 @@ if ( 'post' === $post_type ) { get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Edit Media' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Edit Media' ) . '
' . + '' . __( 'Support forums' ) . '
' ); } if ( 'post' === $post_type || 'page' === $post_type ) { $inserting_media = '' . __( 'You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.' ) . '
'; - $inserting_media .= '' . __( 'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.' ) . '
'; + $inserting_media .= '' . __( 'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.' ) . '
'; get_current_screen()->add_help_tab( array( @@ -377,7 +377,7 @@ if ( 'post' === $post_type ) { ''; if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) { - $publish_box .= '' . __( 'For more information:' ) . '
' . '' . __( 'Documentation on Creating Links' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/edit-tags.php b/wp-admin/edit-tags.php index 9812d97c76..159ffa6847 100644 --- a/wp-admin/edit-tags.php +++ b/wp-admin/edit-tags.php @@ -302,14 +302,14 @@ if ( 'category' === $taxonomy || 'link_category' === $taxonomy || 'post_tag' === $help = '' . __( 'For more information:' ) . '
'; if ( 'category' === $taxonomy ) { - $help .= '' . __( 'Documentation on Categories' ) . '
'; + $help .= '' . __( 'Documentation on Categories' ) . '
'; } elseif ( 'link_category' === $taxonomy ) { $help .= '' . __( 'Documentation on Link Categories' ) . '
'; } else { - $help .= '' . __( 'Documentation on Tags' ) . '
'; + $help .= '' . __( 'Documentation on Tags' ) . '
'; } - $help .= '' . __( 'Support' ) . '
'; + $help .= '' . __( 'Support forums' ) . '
'; get_current_screen()->set_help_sidebar( $help ); diff --git a/wp-admin/edit.php b/wp-admin/edit.php index f56beabae8..634f7a977f 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -294,8 +294,8 @@ if ( 'post' === $post_type ) { get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Managing Posts' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Managing Posts' ) . '
' . + '' . __( 'Support forums' ) . '
' ); } elseif ( 'page' === $post_type ) { @@ -319,8 +319,8 @@ if ( 'post' === $post_type ) { get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Managing Pages' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Managing Pages' ) . '
' . + '' . __( 'Support forums' ) . '
' ); } diff --git a/wp-admin/erase-personal-data.php b/wp-admin/erase-personal-data.php index bbcc086288..0d2d96af45 100644 --- a/wp-admin/erase-personal-data.php +++ b/wp-admin/erase-personal-data.php @@ -62,8 +62,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Erase Personal Data' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Erase Personal Data' ) . '
' . + '' . __( 'Support forums' ) . '
' ); // Handle list table actions. diff --git a/wp-admin/export-personal-data.php b/wp-admin/export-personal-data.php index 6e44ce9c63..2eedd90aa3 100644 --- a/wp-admin/export-personal-data.php +++ b/wp-admin/export-personal-data.php @@ -62,8 +62,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Export Personal Data' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Export Personal Data' ) . '
' . + '' . __( 'Support forums' ) . '
' ); // Handle list table actions. diff --git a/wp-admin/export.php b/wp-admin/export.php index e94a9a0e19..6e4c335190 100644 --- a/wp-admin/export.php +++ b/wp-admin/export.php @@ -56,8 +56,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Export' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Export' ) . '
' . + '' . __( 'Support forums' ) . '
' ); // If the 'download' URL parameter is set, a WXR export file is baked and returned. diff --git a/wp-admin/import.php b/wp-admin/import.php index fe911f86c9..7bf1c1a135 100644 --- a/wp-admin/import.php +++ b/wp-admin/import.php @@ -29,8 +29,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Import' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Import' ) . '
' . + '' . __( 'Support' ) . '
' ); if ( current_user_can( 'install_plugins' ) ) { diff --git a/wp-admin/includes/class-custom-background.php b/wp-admin/includes/class-custom-background.php index 3c5fdfc505..4db2e1480e 100644 --- a/wp-admin/includes/class-custom-background.php +++ b/wp-admin/includes/class-custom-background.php @@ -98,7 +98,7 @@ class Custom_Background { get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . '' . __( 'Documentation on Custom Background' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); wp_enqueue_media(); diff --git a/wp-admin/includes/class-custom-image-header.php b/wp-admin/includes/class-custom-image-header.php index 12ac1ef9e2..143a844cbe 100644 --- a/wp-admin/includes/class-custom-image-header.php +++ b/wp-admin/includes/class-custom-image-header.php @@ -135,7 +135,7 @@ class Custom_Image_Header { get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . '' . __( 'Documentation on Custom Header' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); } diff --git a/wp-admin/includes/class-plugin-installer-skin.php b/wp-admin/includes/class-plugin-installer-skin.php index 8a1ee5609a..a431b16107 100644 --- a/wp-admin/includes/class-plugin-installer-skin.php +++ b/wp-admin/includes/class-plugin-installer-skin.php @@ -293,13 +293,13 @@ class Plugin_Installer_Skin extends WP_Upgrader_Skin { $warning = sprintf( /* translators: %s: Documentation URL. */ __( 'You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.' ), - __( 'https://wordpress.org/support/article/wordpress-backups/' ) + __( 'https://wordpress.org/documentation/article/wordpress-backups/' ) ); } else { $warning = sprintf( /* translators: %s: Documentation URL. */ __( 'You are updating a plugin. Be sure to back up your database and files first.' ), - __( 'https://wordpress.org/support/article/wordpress-backups/' ) + __( 'https://wordpress.org/documentation/article/wordpress-backups/' ) ); } diff --git a/wp-admin/includes/class-theme-installer-skin.php b/wp-admin/includes/class-theme-installer-skin.php index 38089d6c3a..a4f7bf1a40 100644 --- a/wp-admin/includes/class-theme-installer-skin.php +++ b/wp-admin/includes/class-theme-installer-skin.php @@ -328,13 +328,13 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin { $warning = sprintf( /* translators: %s: Documentation URL. */ __( 'You are uploading an older version of the active theme. You can continue to install the older version, but be sure to back up your database and files first.' ), - __( 'https://wordpress.org/support/article/wordpress-backups/' ) + __( 'https://wordpress.org/documentation/article/wordpress-backups/' ) ); } else { $warning = sprintf( /* translators: %s: Documentation URL. */ __( 'You are updating a theme. Be sure to back up your database and files first.' ), - __( 'https://wordpress.org/support/article/wordpress-backups/' ) + __( 'https://wordpress.org/documentation/article/wordpress-backups/' ) ); } diff --git a/wp-admin/includes/class-wp-site-health.php b/wp-admin/includes/class-wp-site-health.php index b37869d680..1cfe58aaf2 100644 --- a/wp-admin/includes/class-wp-site-health.php +++ b/wp-admin/includes/class-wp-site-health.php @@ -1496,7 +1496,7 @@ class WP_Site_Health { 'actions' => sprintf( '', /* translators: Documentation explaining debugging in WordPress. */ - esc_url( __( 'https://wordpress.org/support/article/debugging-in-wordpress/' ) ), + esc_url( __( 'https://wordpress.org/documentation/article/debugging-in-wordpress/' ) ), __( 'Learn more about debugging in WordPress.' ), /* translators: Hidden accessibility text. */ __( '(opens in a new tab)' ) @@ -2329,7 +2329,7 @@ class WP_Site_Health { 'label' => '', 'actions' => sprintf( '', - __( 'https://wordpress.org/support/article/optimization/#Caching' ), + __( 'https://wordpress.org/documentation/article/optimization/#Caching' ), __( 'Learn more about page cache' ), /* translators: Hidden accessibility text. */ __( '(opens in a new tab)' ) @@ -2438,7 +2438,7 @@ class WP_Site_Health { $action_url = apply_filters( 'site_status_persistent_object_cache_url', /* translators: Localized Support reference. */ - __( 'https://wordpress.org/support/article/optimization/#persistent-object-cache' ) + __( 'https://wordpress.org/documentation/article/optimization/#persistent-object-cache' ) ); $result = array( diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 1754832ac5..a9f7627663 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -2099,7 +2099,7 @@ function wp_welcome_panel() { - + diff --git a/wp-admin/includes/file.php b/wp-admin/includes/file.php index 774f3b0151..0f6acc69b4 100644 --- a/wp-admin/includes/file.php +++ b/wp-admin/includes/file.php @@ -323,7 +323,7 @@ function wp_print_file_editor_templates() { printf( /* translators: %s: Documentation URL. */ __( 'You need to make this file writable before you can save your changes. See Changing File Permissions for more information.' ), - __( 'https://wordpress.org/support/article/changing-file-permissions/' ) + __( 'https://wordpress.org/documentation/article/changing-file-permissions/' ) ); ?> @@ -2124,7 +2124,7 @@ function WP_Filesystem( $args = false, $context = false, $allow_relaxed_file_own * The return value can be overridden by defining the `FS_METHOD` constant in `wp-config.php`, * or filtering via {@see 'filesystem_method'}. * - * @link https://wordpress.org/support/article/editing-wp-config-php/#wordpress-upgrade-constants + * @link https://wordpress.org/documentation/article/editing-wp-config-php/#wordpress-upgrade-constants * * Plugins may define a custom transport handler, See WP_Filesystem(). * diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php index c66f6657ca..0e7be72d59 100644 --- a/wp-admin/includes/meta-boxes.php +++ b/wp-admin/includes/meta-boxes.php @@ -746,7 +746,7 @@ function post_excerpt_meta_box( $post ) { printf( /* translators: %s: Documentation URL. */ __( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.' ), - __( 'https://wordpress.org/support/article/excerpt/' ) + __( 'https://wordpress.org/documentation/article/excerpt/' ) ); ?> @@ -784,7 +784,7 @@ function post_trackback_meta_box( $post ) { printf( /* translators: %s: Documentation URL. */ __( 'Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.' ), - __( 'https://wordpress.org/support/article/introduction-to-blogging/#comments' ) + __( 'https://wordpress.org/documentation/article/introduction-to-blogging/#comments' ) ); ?> @@ -821,7 +821,7 @@ function post_custom_meta_box( $post ) { printf( /* translators: %s: Documentation URL. */ __( 'Custom fields can be used to add extra metadata to a post that you can use in your theme.' ), - __( 'https://wordpress.org/support/article/custom-fields/' ) + __( 'https://wordpress.org/documentation/article/custom-fields/' ) ); ?> @@ -845,7 +845,7 @@ function post_comment_status_meta_box( $post ) { printf( /* translators: %s: Documentation URL. */ __( 'Allow trackbacks and pingbacks' ), - __( 'https://wordpress.org/support/article/introduction-to-blogging/#managing-comments' ) + __( 'https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments' ) ); ?> diff --git a/wp-admin/includes/ms.php b/wp-admin/includes/ms.php index 9d1ab92c70..163427c53d 100644 --- a/wp-admin/includes/ms.php +++ b/wp-admin/includes/ms.php @@ -1154,6 +1154,6 @@ function get_site_screen_help_tab_args() { */ function get_site_screen_help_sidebar_content() { return '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Site Management' ) . '
' . + '' . __( 'Documentation on Site Management' ) . '
' . '' . __( 'Support Forums' ) . '
'; } diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php index aef0b2e4b6..d5f68d239d 100644 --- a/wp-admin/includes/network.php +++ b/wp-admin/includes/network.php @@ -645,7 +645,7 @@ define( 'BLOG_ID_CURRENT_SITE', 1 ); printf( /* translators: %s: Documentation URL. */ __( 'It seems your network is running with Nginx web server. Learn more about further configuration.' ), - __( 'https://wordpress.org/support/article/nginx/' ) + __( 'https://wordpress.org/documentation/article/nginx/' ) ); echo ''; diff --git a/wp-admin/includes/options.php b/wp-admin/includes/options.php index 68e9138a2f..82847bb4d6 100644 --- a/wp-admin/includes/options.php +++ b/wp-admin/includes/options.php @@ -130,5 +130,5 @@ function options_reading_add_js() { */ function options_reading_blog_charset() { echo ''; - echo '' . __( 'The character encoding of your site (UTF-8 is recommended)' ) . '
'; + echo '' . __( 'The character encoding of your site (UTF-8 is recommended)' ) . '
'; } diff --git a/wp-admin/index.php b/wp-admin/index.php index ccdf525c0c..d417e71332 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -129,8 +129,8 @@ if ( ! $is_dev_version ) { $screen->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Dashboard' ) . '
' . - '' . __( 'Support' ) . '
' . + '' . __( 'Documentation on Dashboard' ) . '
' . + '' . __( 'Support forums' ) . '
' . '' . $wp_version_text . '
' ); diff --git a/wp-admin/link-manager.php b/wp-admin/link-manager.php index 47f0354776..5f56ac7983 100644 --- a/wp-admin/link-manager.php +++ b/wp-admin/link-manager.php @@ -77,7 +77,7 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . '' . __( 'Documentation on Managing Links' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); get_current_screen()->set_screen_reader_content( diff --git a/wp-admin/media-new.php b/wp-admin/media-new.php index 94fa50ff3d..fa50644d2d 100644 --- a/wp-admin/media-new.php +++ b/wp-admin/media-new.php @@ -58,8 +58,8 @@ get_current_screen()->add_help_tab( ); get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Uploading Media Files' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Uploading Media Files' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/media.php b/wp-admin/media.php index 6532dd53ba..9c3a4cc07d 100644 --- a/wp-admin/media.php +++ b/wp-admin/media.php @@ -94,8 +94,8 @@ switch ( $action ) { get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Edit Media' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Edit Media' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/my-sites.php b/wp-admin/my-sites.php index bd6dca670b..dc99843d75 100644 --- a/wp-admin/my-sites.php +++ b/wp-admin/my-sites.php @@ -50,7 +50,7 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . '' . __( 'Documentation on My Sites' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/nav-menus.php b/wp-admin/nav-menus.php index a606fbd554..1c4c07c99a 100644 --- a/wp-admin/nav-menus.php +++ b/wp-admin/nav-menus.php @@ -683,8 +683,8 @@ endif; get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Menus' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Menus' ) . '
' . + '' . __( 'Support forums' ) . '
' ); // Get the admin header. diff --git a/wp-admin/network.php b/wp-admin/network.php index a358d0e980..40c5ffc5bf 100644 --- a/wp-admin/network.php +++ b/wp-admin/network.php @@ -65,8 +65,8 @@ $network_help = '' . __( 'This screen allows you to configure a network as ha '
' . __( 'Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.' ) . '
' . '' . __( 'The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.' ) . '
' . '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Creating a Network' ) . '
' . - '' . __( 'Documentation on the Network Screen' ) . '
'; + '' . __( 'Documentation on Creating a Network' ) . '
' . + '' . __( 'Documentation on the Network Screen' ) . '
'; get_current_screen()->add_help_tab( array( @@ -78,9 +78,9 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Creating a Network' ) . '
' . - '' . __( 'Documentation on the Network Screen' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Creating a Network' ) . '
' . + '' . __( 'Documentation on the Network Screen' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/network/index.php b/wp-admin/network/index.php index 29363780a4..938279274d 100644 --- a/wp-admin/network/index.php +++ b/wp-admin/network/index.php @@ -53,7 +53,7 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on the Network Admin' ) . '
' . + '' . __( 'Documentation on the Network Admin' ) . '
' . '' . __( 'Support Forums' ) . '
' ); diff --git a/wp-admin/network/settings.php b/wp-admin/network/settings.php index e67fbddc84..b9551ec5e2 100644 --- a/wp-admin/network/settings.php +++ b/wp-admin/network/settings.php @@ -61,8 +61,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Network Settings' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Network Settings' ) . '
' . + '' . __( 'Support forums' ) . '
' ); if ( $_POST ) { diff --git a/wp-admin/network/site-new.php b/wp-admin/network/site-new.php index 0314d02af8..5cd8028d02 100644 --- a/wp-admin/network/site-new.php +++ b/wp-admin/network/site-new.php @@ -29,7 +29,7 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Site Management' ) . '
' . + '' . __( 'Documentation on Site Management' ) . '
' . '' . __( 'Support Forums' ) . '
' ); diff --git a/wp-admin/network/sites.php b/wp-admin/network/sites.php index 2aa2dbff55..7ce09b91df 100644 --- a/wp-admin/network/sites.php +++ b/wp-admin/network/sites.php @@ -43,7 +43,7 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Site Management' ) . '
' . + '' . __( 'Documentation on Site Management' ) . '
' . '' . __( 'Support Forums' ) . '
' ); diff --git a/wp-admin/network/themes.php b/wp-admin/network/themes.php index 930f4a190a..72573e9fb9 100644 --- a/wp-admin/network/themes.php +++ b/wp-admin/network/themes.php @@ -316,14 +316,14 @@ if ( current_user_can( 'update_themes' ) && wp_is_auto_update_enabled_for_type( ) ); - $help_sidebar_autoupdates = '' . __( 'Documentation on Auto-updates' ) . '
'; + $help_sidebar_autoupdates = '' . __( 'Documentation on Auto-updates' ) . '
'; } get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . '' . __( 'Documentation on Network Themes' ) . '
' . $help_sidebar_autoupdates . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); get_current_screen()->set_screen_reader_content( diff --git a/wp-admin/network/upgrade.php b/wp-admin/network/upgrade.php index a21764f6e1..55cbedd643 100644 --- a/wp-admin/network/upgrade.php +++ b/wp-admin/network/upgrade.php @@ -29,8 +29,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Upgrade Network' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Upgrade Network' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/options-discussion.php b/wp-admin/options-discussion.php index f34be054de..19e3c45dc8 100644 --- a/wp-admin/options-discussion.php +++ b/wp-admin/options-discussion.php @@ -29,8 +29,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Discussion Settings' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Discussion Settings' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index e624217a53..b99a86315e 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -46,8 +46,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on General Settings' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on General Settings' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; @@ -106,7 +106,7 @@ if ( ! is_multisite() ) { printf( /* translators: %s: Documentation URL. */ __( 'Enter the same address here unless you want your site home page to be different from your WordPress installation directory.' ), - __( 'https://wordpress.org/support/article/giving-wordpress-its-own-directory/' ) + __( 'https://wordpress.org/documentation/article/giving-wordpress-its-own-directory/' ) ); ?> @@ -410,7 +410,7 @@ foreach ( $time_formats as $format ) { '' . __( 'Preview:' ) . ' ' . date_i18n( get_option( 'time_format' ) ) . '' . "\n" . '
'; - echo "\t" . __( 'Documentation on date and time formatting.' ) . "
\n"; + echo "\t" . __( 'Documentation on date and time formatting.' ) . "
\n"; ?> diff --git a/wp-admin/options-media.php b/wp-admin/options-media.php index 54c7174d96..ce814c9d38 100644 --- a/wp-admin/options-media.php +++ b/wp-admin/options-media.php @@ -38,8 +38,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Media Settings' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Media Settings' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/options-permalink.php b/wp-admin/options-permalink.php index 316bec1df7..1819884c64 100644 --- a/wp-admin/options-permalink.php +++ b/wp-admin/options-permalink.php @@ -57,14 +57,14 @@ get_current_screen()->add_help_tab( ); $help_sidebar_content = '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Permalinks Settings' ) . '
' . - '' . __( 'Documentation on Using Permalinks' ) . '
'; + '' . __( 'Documentation on Permalinks Settings' ) . '
' . + '' . __( 'Documentation on Using Permalinks' ) . '
'; if ( $is_nginx ) { - $help_sidebar_content .= '' . __( 'Documentation on Nginx configuration.' ) . '
'; + $help_sidebar_content .= '' . __( 'Documentation on Nginx configuration.' ) . '
'; } -$help_sidebar_content .= '' . __( 'Support' ) . '
'; +$help_sidebar_content .= '' . __( 'Support forums' ) . '
'; get_current_screen()->set_help_sidebar( $help_sidebar_content ); unset( $help_sidebar_content ); diff --git a/wp-admin/options-privacy.php b/wp-admin/options-privacy.php index b477cc40b1..48984be978 100644 --- a/wp-admin/options-privacy.php +++ b/wp-admin/options-privacy.php @@ -44,7 +44,7 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Privacy Settings' ) . '
' + '' . __( 'Documentation on Privacy Settings' ) . '
' ); if ( ! empty( $action ) ) { diff --git a/wp-admin/options-reading.php b/wp-admin/options-reading.php index b0bb61f569..0bd1667b74 100644 --- a/wp-admin/options-reading.php +++ b/wp-admin/options-reading.php @@ -32,7 +32,7 @@ get_current_screen()->add_help_tab( '' . sprintf( /* translators: %s: Documentation URL. */ __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.' ), - __( 'https://wordpress.org/support/article/wordpress-feeds/' ) + __( 'https://wordpress.org/documentation/article/wordpress-feeds/' ) ) . '
' . '' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '
', ) @@ -50,8 +50,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Reading Settings' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Reading Settings' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; @@ -181,7 +181,7 @@ else : printf( /* translators: %s: Documentation URL. */ __( 'Your theme determines how content is displayed in browsers. Learn more about feeds.' ), - __( 'https://wordpress.org/support/article/wordpress-feeds/' ) + __( 'https://wordpress.org/documentation/article/wordpress-feeds/' ) ); ?> diff --git a/wp-admin/options-writing.php b/wp-admin/options-writing.php index c453258bd8..1c365033ad 100644 --- a/wp-admin/options-writing.php +++ b/wp-admin/options-writing.php @@ -50,8 +50,8 @@ if ( apply_filters( 'enable_update_services_configuration', true ) ) { get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Writing Settings' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Writing Settings' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; @@ -213,7 +213,7 @@ if ( apply_filters( 'enable_update_services_configuration', true ) ) { printf( /* translators: %s: Documentation URL. */ __( 'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.' ), - __( 'https://wordpress.org/support/article/update-services/' ) + __( 'https://wordpress.org/documentation/article/update-services/' ) ); ?> @@ -227,7 +227,7 @@ if ( apply_filters( 'enable_update_services_configuration', true ) ) { printf( /* translators: 1: Documentation URL, 2: URL to Reading Settings screen. */ __( 'WordPress is not notifying any Update Services because of your site’s visibility settings.' ), - __( 'https://wordpress.org/support/article/update-services/' ), + __( 'https://wordpress.org/documentation/article/update-services/' ), 'options-reading.php' ); ?> diff --git a/wp-admin/plugin-editor.php b/wp-admin/plugin-editor.php index e6804c671b..78eac87f92 100644 --- a/wp-admin/plugin-editor.php +++ b/wp-admin/plugin-editor.php @@ -140,9 +140,9 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Editing Plugins' ) . '
' . + '' . __( 'Documentation on Editing Plugins' ) . '
' . '' . __( 'Documentation on Writing Plugins' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); $settings = array( @@ -296,7 +296,7 @@ $content = esc_textarea( $content ); printf( /* translators: %s: Documentation URL. */ __( 'You need to make this file writable before you can save your changes. See Changing File Permissions for more information.' ), - __( 'https://wordpress.org/support/article/changing-file-permissions/' ) + __( 'https://wordpress.org/documentation/article/changing-file-permissions/' ) ); ?> diff --git a/wp-admin/plugin-install.php b/wp-admin/plugin-install.php index 0e1a76c3a6..571b9a9875 100644 --- a/wp-admin/plugin-install.php +++ b/wp-admin/plugin-install.php @@ -118,8 +118,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Installing Plugins' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Installing Plugins' ) . '
' . + '' . __( 'Support forums' ) . '
' ); get_current_screen()->set_screen_reader_content( diff --git a/wp-admin/plugins.php b/wp-admin/plugins.php index bc7774b197..6399ff50b6 100644 --- a/wp-admin/plugins.php +++ b/wp-admin/plugins.php @@ -580,14 +580,14 @@ if ( current_user_can( 'update_plugins' ) && wp_is_auto_update_enabled_for_type( ) ); - $help_sidebar_autoupdates = '' . __( 'Documentation on Auto-updates' ) . '
'; + $help_sidebar_autoupdates = '' . __( 'Documentation on Auto-updates' ) . '
'; } get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Managing Plugins' ) . '
' . + '' . __( 'Documentation on Managing Plugins' ) . '
' . $help_sidebar_autoupdates . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); get_current_screen()->set_screen_reader_content( diff --git a/wp-admin/revision.php b/wp-admin/revision.php index 62ac5bbda3..458a749262 100644 --- a/wp-admin/revision.php +++ b/wp-admin/revision.php @@ -154,8 +154,8 @@ get_current_screen()->add_help_tab( ); $revisions_sidebar = '' . __( 'For more information:' ) . '
'; -$revisions_sidebar .= '' . __( 'Revisions Management' ) . '
'; -$revisions_sidebar .= '' . __( 'Support' ) . '
'; +$revisions_sidebar .= '' . __( 'Revisions Management' ) . '
'; +$revisions_sidebar .= '' . __( 'Support forums' ) . '
'; get_current_screen()->set_help_sidebar( $revisions_sidebar ); diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php index 30a1b79502..93e32e0b5e 100644 --- a/wp-admin/setup-config.php +++ b/wp-admin/setup-config.php @@ -193,7 +193,7 @@ switch ( $step ) { printf( /* translators: 1: Documentation URL, 2: wp-config.php */ __( 'Need more help? Read the support article on %2$s.' ), - __( 'https://wordpress.org/support/article/editing-wp-config-php/' ), + __( 'https://wordpress.org/documentation/article/editing-wp-config-php/' ), 'wp-config.php
'
);
?>
@@ -471,7 +471,7 @@ if ( ! /iPad|iPod|iPhone/.test( navigator.userAgent ) ) {
/* translators: 1: wp-config.php, 2: Documentation URL. */
__( 'You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information.' ),
'wp-config.php
',
- __( 'https://wordpress.org/support/article/changing-file-permissions/' )
+ __( 'https://wordpress.org/documentation/article/changing-file-permissions/' )
);
} else {
$error_message = sprintf(
diff --git a/wp-admin/site-health.php b/wp-admin/site-health.php
index 5c471fe4d5..8add5ce770 100644
--- a/wp-admin/site-health.php
+++ b/wp-admin/site-health.php
@@ -87,7 +87,7 @@ get_current_screen()->add_help_tab(
get_current_screen()->set_help_sidebar(
'' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Site Health tool' ) . '
' + '' . __( 'Documentation on Site Health tool' ) . '
' ); // Start by checking if this is a special request checking for the existence of certain filters. diff --git a/wp-admin/theme-editor.php b/wp-admin/theme-editor.php index cd37763d15..790a16f781 100644 --- a/wp-admin/theme-editor.php +++ b/wp-admin/theme-editor.php @@ -50,10 +50,10 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . '' . __( 'Documentation on Theme Development' ) . '
' . - '' . __( 'Documentation on Editing Themes' ) . '
' . - '' . __( 'Documentation on Editing Files' ) . '
' . + '' . __( 'Documentation on Editing Themes' ) . '
' . + '' . __( 'Documentation on Editing Files' ) . '
' . '' . __( 'Documentation on Template Tags' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); wp_reset_vars( array( 'action', 'error', 'file', 'theme' ) ); @@ -326,7 +326,7 @@ else : printf( /* translators: %s: Documentation URL. */ __( 'You need to make this file writable before you can save your changes. See Changing File Permissions for more information.' ), - __( 'https://wordpress.org/support/article/changing-file-permissions/' ) + __( 'https://wordpress.org/documentation/article/changing-file-permissions/' ) ); ?> diff --git a/wp-admin/theme-install.php b/wp-admin/theme-install.php index e0a9a13e03..52172b97b9 100644 --- a/wp-admin/theme-install.php +++ b/wp-admin/theme-install.php @@ -153,9 +153,9 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Adding New Themes' ) . '
' . - '' . __( 'Documentation on Block Themes' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Adding New Themes' ) . '
' . + '' . __( 'Documentation on Block Themes' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/themes.php b/wp-admin/themes.php index e2b60f778f..ff09c49166 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -199,15 +199,15 @@ if ( current_user_can( 'update_themes' ) && wp_is_auto_update_enabled_for_type( ) ); - $help_sidebar_autoupdates = '' . __( 'Documentation on Auto-updates' ) . '
'; + $help_sidebar_autoupdates = '' . __( 'Documentation on Auto-updates' ) . '
'; } // End if 'update_themes' && 'wp_is_auto_update_enabled_for_type'. get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Using Themes' ) . '
' . - '' . __( 'Documentation on Managing Themes' ) . '
' . + '' . __( 'Documentation on Using Themes' ) . '
' . + '' . __( 'Documentation on Managing Themes' ) . '
' . $help_sidebar_autoupdates . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); if ( current_user_can( 'switch_themes' ) ) { diff --git a/wp-admin/tools.php b/wp-admin/tools.php index 8095e4726b..d03c64fa61 100644 --- a/wp-admin/tools.php +++ b/wp-admin/tools.php @@ -53,8 +53,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Tools' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Tools' ) . '
' . + '' . __( 'Support forums' ) . '
' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index 2ac4648fcf..c33d1557be 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -265,8 +265,8 @@ function core_upgrade_preamble() { printf( /* translators: 1: Documentation on WordPress backups, 2: Documentation on updating WordPress. */ __( 'Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.' ), - __( 'https://wordpress.org/support/article/wordpress-backups/' ), - __( 'https://wordpress.org/support/article/updating-wordpress/' ) + __( 'https://wordpress.org/documentation/article/wordpress-backups/' ), + __( 'https://wordpress.org/documentation/article/updating-wordpress/' ) ); echo ''; } elseif ( $is_development_version ) { @@ -1008,14 +1008,14 @@ if ( ( current_user_can( 'update_themes' ) && wp_is_auto_update_enabled_for_type ) ); - $help_sidebar_autoupdates = '' . __( 'Documentation on Auto-updates' ) . '
'; + $help_sidebar_autoupdates = '' . __( 'Documentation on Auto-updates' ) . '
'; } get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Updating WordPress' ) . '
' . + '' . __( 'Documentation on Updating WordPress' ) . '
' . $help_sidebar_autoupdates . - '' . __( 'Support' ) . '
' + '' . __( 'Support forums' ) . '
' ); if ( 'upgrade-core' === $action ) { diff --git a/wp-admin/upload.php b/wp-admin/upload.php index 1594d7858d..0a8aa6526b 100644 --- a/wp-admin/upload.php +++ b/wp-admin/upload.php @@ -156,8 +156,8 @@ if ( 'grid' === $mode ) { get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Media Library' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Media Library' ) . '
' . + '' . __( 'Support forums' ) . '
' ); // Used in the HTML title tag. @@ -349,8 +349,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Media Library' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Media Library' ) . '
' . + '' . __( 'Support forums' ) . '
' ); get_current_screen()->set_screen_reader_content( diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php index f9c3e4feec..3838b7ba1a 100644 --- a/wp-admin/user-edit.php +++ b/wp-admin/user-edit.php @@ -74,8 +74,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on User Profiles' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on User Profiles' ) . '
' . + '' . __( 'Support forums' ) . '
' ); $wp_http_referer = remove_query_arg( array( 'update', 'delete_count', 'user_id' ), $wp_http_referer ); @@ -333,7 +333,7 @@ switch ( $action ) { comment_shortcuts ); ?> /> - Documentation on Keyboard Shortcuts' ); ?> + Documentation on Keyboard Shortcuts' ); ?> diff --git a/wp-admin/user-new.php b/wp-admin/user-new.php index 0d779e21c1..1c62f18cb3 100644 --- a/wp-admin/user-new.php +++ b/wp-admin/user-new.php @@ -298,8 +298,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Adding New Users' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Adding New Users' ) . '
' . + '' . __( 'Support forums' ) . '
' ); wp_enqueue_script( 'wp-ajax-response' ); diff --git a/wp-admin/users.php b/wp-admin/users.php index ba96928bcf..82abb1dc40 100644 --- a/wp-admin/users.php +++ b/wp-admin/users.php @@ -79,9 +79,9 @@ unset( $help ); get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Managing Users' ) . '
' . - '' . __( 'Descriptions of Roles and Capabilities' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Managing Users' ) . '
' . + '' . __( 'Descriptions of Roles and Capabilities' ) . '
' . + '' . __( 'Support forums' ) . '
' ); get_current_screen()->set_screen_reader_content( diff --git a/wp-admin/widgets-form.php b/wp-admin/widgets-form.php index 908015146c..1a58b4a969 100644 --- a/wp-admin/widgets-form.php +++ b/wp-admin/widgets-form.php @@ -68,8 +68,8 @@ get_current_screen()->add_help_tab( get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Widgets' ) . '
' . - '' . __( 'Support' ) . '
' + '' . __( 'Documentation on Widgets' ) . '
' . + '' . __( 'Support forums' ) . '
' ); // These are the widgets grouped by sidebar. diff --git a/wp-config-sample.php b/wp-config-sample.php index c095f50f6c..feb1137f39 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -13,7 +13,7 @@ * * Database table prefix * * ABSPATH * - * @link https://wordpress.org/support/article/editing-wp-config-php/ + * @link https://wordpress.org/documentation/article/editing-wp-config-php/ * * @package WordPress */ @@ -77,7 +77,7 @@ $table_prefix = 'wp_'; * For information on other constants that can be used for debugging, * visit the documentation. * - * @link https://wordpress.org/support/article/debugging-in-wordpress/ + * @link https://wordpress.org/documentation/article/debugging-in-wordpress/ */ define( 'WP_DEBUG', false ); diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 9fd959e0f0..dedb6fe319 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -5689,7 +5689,7 @@ final class WP_Customize_Manager { $section_description .= __( 'Add your own CSS code here to customize the appearance and layout of your site.' ); $section_description .= sprintf( ' %2$s %3$s', - esc_url( __( 'https://wordpress.org/support/article/css/' ) ), + esc_url( __( 'https://wordpress.org/documentation/article/css/' ) ), __( 'Learn more about CSS' ), /* translators: Hidden accessibility text. */ __( '(opens in a new tab)' ) diff --git a/wp-includes/class-wp-fatal-error-handler.php b/wp-includes/class-wp-fatal-error-handler.php index 55d328fbab..842182d483 100644 --- a/wp-includes/class-wp-fatal-error-handler.php +++ b/wp-includes/class-wp-fatal-error-handler.php @@ -198,7 +198,7 @@ class WP_Fatal_Error_Handler { '%s
', $message, /* translators: Documentation about troubleshooting. */ - __( 'https://wordpress.org/support/article/faq-troubleshooting/' ), + __( 'https://wordpress.org/documentation/article/faq-troubleshooting/' ), __( 'Learn more about troubleshooting WordPress.' ) ); diff --git a/wp-includes/class-wp-oembed.php b/wp-includes/class-wp-oembed.php index 40629198f3..7941108bf9 100644 --- a/wp-includes/class-wp-oembed.php +++ b/wp-includes/class-wp-oembed.php @@ -4,7 +4,7 @@ * * Used internally by the WP_Embed class, but is designed to be generic. * - * @link https://wordpress.org/support/article/embeds/ + * @link https://wordpress.org/documentation/article/embeds/ * @link http://oembed.com/ * * @package WordPress diff --git a/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php b/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php index 02fcbd08cc..7418ed6d40 100644 --- a/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php +++ b/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php @@ -50,7 +50,7 @@ class WP_Customize_Nav_Menu_Locations_Control extends WP_Customize_Control { printf( /* translators: 1: Documentation URL, 2: Additional link attributes, 3: Accessibility text. */ _x( '(If you plan to use a menu widget%3$s, skip this step.)', 'menu locations' ), - __( 'https://wordpress.org/support/article/wordpress-widgets/' ), + __( 'https://wordpress.org/documentation/article/wordpress-widgets/' ), ' class="external-link" target="_blank"', sprintf( ' %s', diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index a17fc77931..f546f5e710 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -4963,7 +4963,7 @@ function sanitize_option( $option, $value ) { $error = sprintf( /* translators: %s: Documentation URL. */ __( 'A structure tag is required when using custom permalinks. Learn more' ), - __( 'https://wordpress.org/support/article/using-permalinks/#choosing-your-permalink-structure' ) + __( 'https://wordpress.org/documentation/article/using-permalinks/#choosing-your-permalink-structure' ) ); } break; diff --git a/wp-includes/functions.php b/wp-includes/functions.php index c0c2725aa7..67089803bb 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -5847,7 +5847,7 @@ function _doing_it_wrong( $function_name, $message, $version ) { $message .= ' ' . sprintf( /* translators: %s: Documentation URL. */ __( 'Please see Debugging in WordPress 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 Debugging in WordPress 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/' ); } /** diff --git a/wp-includes/ms-load.php b/wp-includes/ms-load.php index c7f74167f4..70c98b2c5e 100644 --- a/wp-includes/ms-load.php +++ b/wp-includes/ms-load.php @@ -493,7 +493,7 @@ function ms_not_installed( $domain, $path ) { $msg .= sprintf( /* translators: %s: Documentation URL. */ __( 'Read the Debugging a WordPress Network article. Some of the suggestions there may help you figure out what went wrong.' ), - __( 'https://wordpress.org/support/article/debugging-a-wordpress-network/' ) + __( 'https://wordpress.org/documentation/article/debugging-a-wordpress-network/' ) ); $msg .= ' ' . __( 'If you are still stuck with this message, then check that your database contains the following tables:' ) . '' . sprintf(
/* translators: 1: Documentation URL, 2: wp-config.php */
__( 'Need more help? Read the support article on %2$s.' ),
- __( 'https://wordpress.org/support/article/editing-wp-config-php/' ),
+ __( 'https://wordpress.org/documentation/article/editing-wp-config-php/' ),
'wp-config.php
'
) . '
' . sprintf( diff --git a/wp-login.php b/wp-login.php index 2b77a91669..9a1bbb5bce 100644 --- a/wp-login.php +++ b/wp-login.php @@ -651,7 +651,7 @@ switch ( $action ) { %s', @@ -1247,7 +1247,7 @@ switch ( $action ) { sprintf( /* translators: 1: Browser cookie documentation URL, 2: Support forums URL. */ __( 'Error: Cookies are blocked due to unexpected output. For help, please see this documentation or try the support forums.' ), - __( 'https://wordpress.org/support/article/cookies/' ), + __( 'https://wordpress.org/documentation/article/cookies/' ), __( 'https://wordpress.org/support/forums/' ) ) ); @@ -1258,7 +1258,7 @@ switch ( $action ) { sprintf( /* translators: %s: Browser cookie documentation URL. */ __( 'Error: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress.' ), - __( 'https://wordpress.org/support/article/cookies/#enable-cookies-in-your-browser' ) + __( 'https://wordpress.org/documentation/article/cookies/#enable-cookies-in-your-browser' ) ) ); }