Docs: Correct `@return` value type for `wp_nav_menu()`.
Props chesio. Fixes #39890. Built from https://develop.svn.wordpress.org/trunk@40062 git-svn-id: http://core.svn.wordpress.org/trunk@39999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0bcfc08b3f
commit
59d33e90da
|
@ -43,7 +43,7 @@ require_once ABSPATH . WPINC . '/class-walker-nav-menu.php';
|
||||||
* Uses printf() format with numbered placeholders.
|
* Uses printf() format with numbered placeholders.
|
||||||
* @type string $item_spacing Whether to preserve whitespace within the menu's HTML. Accepts 'preserve' or 'discard'. Default 'preserve'.
|
* @type string $item_spacing Whether to preserve whitespace within the menu's HTML. Accepts 'preserve' or 'discard'. Default 'preserve'.
|
||||||
* }
|
* }
|
||||||
* @return object|false|void Menu output if $echo is false, false if there are no items or no menu was found.
|
* @return string|false|void Menu output if $echo is false, false if there are no items or no menu was found.
|
||||||
*/
|
*/
|
||||||
function wp_nav_menu( $args = array() ) {
|
function wp_nav_menu( $args = array() ) {
|
||||||
static $menu_id_slugs = array();
|
static $menu_id_slugs = array();
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.8-alpha-40061';
|
$wp_version = '4.8-alpha-40062';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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