From fa33be116224666c99a4bb119a12ef9136044546 Mon Sep 17 00:00:00 2001 From: rob1n Date: Sun, 1 Apr 2007 15:40:50 +0000 Subject: [PATCH] Run the post titles through the the_title filter. fixes #3366 git-svn-id: http://svn.automattic.com/wordpress/trunk@5164 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 fa9db6048b..d223b6ac62 100644 --- a/wp-includes/classes.php +++ b/wp-includes/classes.php @@ -514,7 +514,7 @@ class Walker_Page extends Walker { elseif ( $_current_page && $page->ID == $_current_page->post_parent ) $css_class .= ' current_page_parent'; - $output .= $indent . '
  • ' . $page->post_title . ''; + $output .= $indent . '
  • ' . apply_filters('the_title', $page->post_title) . ''; if ( !empty($show_date) ) { if ( 'modified' == $show_date )