diff --git a/src/wp-includes/admin-bar.php b/src/wp-includes/admin-bar.php
index b63be9cd2a..aeb4584d5b 100644
a
|
b
|
function wp_admin_bar_wp_menu( $wp_admin_bar ) { |
172 | 172 | 'parent' => 'wp-logo-external', |
173 | 173 | 'id' => 'documentation', |
174 | 174 | 'title' => __( 'Documentation' ), |
175 | | 'href' => __( 'https://codex.wordpress.org/' ), |
| 175 | 'href' => __( 'https://wordpress.org/support/' ), |
176 | 176 | ) |
177 | 177 | ); |
178 | 178 | |
… |
… |
function wp_admin_bar_wp_menu( $wp_admin_bar ) { |
182 | 182 | 'parent' => 'wp-logo-external', |
183 | 183 | 'id' => 'support-forums', |
184 | 184 | 'title' => __( 'Support' ), |
185 | | 'href' => __( 'https://wordpress.org/support/' ), |
| 185 | 'href' => __( 'https://wordpress.org/support/forums/' ), |
186 | 186 | ) |
187 | 187 | ); |
188 | 188 | |