From 3a06fdf0b8f3052a8bae900453b1165f560b87a7 Mon Sep 17 00:00:00 2001 From: westi Date: Sat, 22 Nov 2008 10:39:58 +0000 Subject: [PATCH] phpdoc and notice fix for wp_page_menu(). Fixes #8315 props jacobsantos. git-svn-id: http://svn.automattic.com/wordpress/trunk@9844 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-template.php | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 703e84be6..bb1c0cebd 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -635,7 +635,25 @@ function wp_list_pages($args = '') { } /** - * Display menu of pages. + * Display or retrieve list of pages with optional home link. + * + * The arguments are listed below and part of the arguments are for {@link + * wp_list_pages()} function. Check that function for more info on those + * arguments. + * + * * * @since 2.7.0 * @@ -649,7 +667,7 @@ function wp_page_menu( $args = array() ) { $menu = ''; // Show Home in the menu - if ( !empty($args['show_home']) ) { + if ( isset($args['show_home']) && ! empty($args['show_home']) ) { if ( true === $args['show_home'] || '1' === $args['show_home'] || 1 === $args['show_home'] ) $text = __('Home'); else