From b01b411b45d46c300ead3cbc7fb9bb4cd8b9c19b Mon Sep 17 00:00:00 2001 From: markjaquith 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: http://svn.automattic.com/wordpress/trunk@15587 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 )