Customize: Include nav menu item for Home custom link in search results for "Home".
Props audrasjb, westonruter. Fixes #42991. Built from https://develop.svn.wordpress.org/trunk@42611 git-svn-id: http://core.svn.wordpress.org/trunk@42440 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7d9c47d536
commit
a8b77a1948
|
@ -385,6 +385,22 @@ final class WP_Customize_Nav_Menus {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add "Home" link if search term matches. Treat as a page, but switch to custom on add.
|
||||||
|
if ( isset( $args['s'] ) ) {
|
||||||
|
$title = _x( 'Home', 'nav menu home label' );
|
||||||
|
$matches = function_exists( 'mb_stripos' ) ? false !== mb_stripos( $title, $args['s'] ) : false !== stripos( $title, $args['s'] );
|
||||||
|
if ( $matches ) {
|
||||||
|
$items[] = array(
|
||||||
|
'id' => 'home',
|
||||||
|
'title' => $title,
|
||||||
|
'type' => 'custom',
|
||||||
|
'type_label' => __( 'Custom Link' ),
|
||||||
|
'object' => '',
|
||||||
|
'url' => home_url(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filters the available menu items during a search request.
|
* Filters the available menu items during a search request.
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-42610';
|
$wp_version = '5.0-alpha-42611';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue