From 08c7020ab89e730e5ebd2059fb4d5fe15177e60f Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 5 Nov 2009 22:01:53 +0000 Subject: [PATCH] Propagate walker arg down the stack. Props scribu. fixes #10921 git-svn-id: https://develop.svn.wordpress.org/trunk@12149 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/post-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index ef59d4bacd..37b0e782cf 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -732,7 +732,7 @@ function wp_list_pages($args = '') { 'child_of' => 0, 'exclude' => '', 'title_li' => __('Pages'), 'echo' => 1, 'authors' => '', 'sort_column' => 'menu_order, post_title', - 'link_before' => '', 'link_after' => '' + 'link_before' => '', 'link_after' => '', 'walker' => '', ); $r = wp_parse_args( $args, $defaults );