diff --git a/src/wp-includes/class-wp-customize-nav-menus.php b/src/wp-includes/class-wp-customize-nav-menus.php
index 9529ce7..7308f1b 100644
a
|
b
|
final class WP_Customize_Nav_Menus { |
385 | 385 | } |
386 | 386 | } |
387 | 387 | |
| 388 | // Add "Home" link. Treat as a page, but switch to custom on add. |
| 389 | $items[] = array( |
| 390 | 'id' => 'home', |
| 391 | 'title' => _x( 'Home', 'nav menu home label' ), |
| 392 | 'type' => 'custom', |
| 393 | 'type_label' => __( 'Custom Link' ), |
| 394 | 'object' => '', |
| 395 | 'url' => home_url(), |
| 396 | ); |
| 397 | |
388 | 398 | /** |
389 | 399 | * Filters the available menu items during a search request. |
390 | 400 | * |