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.