From d07572b3e409810f938dd893bde55714dba93fc5 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Tue, 7 Sep 2010 04:31:07 +0000 Subject: [PATCH] Support custom post type links in wp_list_pages(). fixes #14177. props scribu git-svn-id: https://develop.svn.wordpress.org/trunk@15587 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/classes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/classes.php b/wp-includes/classes.php index 03770586af..0693fe5581 100644 --- a/wp-includes/classes.php +++ b/wp-includes/classes.php @@ -1202,7 +1202,7 @@ class Walker_Page extends Walker { $css_class = implode(' ', apply_filters('page_css_class', $css_class, $page)); - $output .= $indent . '
  • ' . $link_before . apply_filters( 'the_title', $page->post_title, $page->ID ) . $link_after . ''; + $output .= $indent . '
  • ' . $link_before . apply_filters( 'the_title', $page->post_title, $page->ID ) . $link_after . ''; if ( !empty($show_date) ) { if ( 'modified' == $show_date )