From b97ae4e14c82464e2df02a5197778d57e344b9f1 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 25 Jan 2021 12:53:58 +0000 Subject: [PATCH] Toolbar: Update Documentation and Support links. This replaces the Codex URL in the "WordPress" section of the admin bar with the HelpHub URL, and updates the Support link to point to the forums. Follow-up to [45140], [45412]. Props audrasjb. Fixes #52352. See #46790, #47239. Built from https://develop.svn.wordpress.org/trunk@50015 git-svn-id: http://core.svn.wordpress.org/trunk@49716 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/admin-bar.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/admin-bar.php b/wp-includes/admin-bar.php index b63be9cd2a..0ea79225d9 100644 --- a/wp-includes/admin-bar.php +++ b/wp-includes/admin-bar.php @@ -166,13 +166,13 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) { ) ); - // Add Codex link. + // Add documentation link. $wp_admin_bar->add_node( array( 'parent' => 'wp-logo-external', 'id' => 'documentation', 'title' => __( 'Documentation' ), - 'href' => __( 'https://codex.wordpress.org/' ), + 'href' => __( 'https://wordpress.org/support/' ), ) ); @@ -182,7 +182,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) { 'parent' => 'wp-logo-external', 'id' => 'support-forums', 'title' => __( 'Support' ), - 'href' => __( 'https://wordpress.org/support/' ), + 'href' => __( 'https://wordpress.org/support/forums/' ), ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 7704ea994d..26f28bda62 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-50014'; +$wp_version = '5.7-alpha-50015'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.