From 616570aadce23cb401bea5368cceda4899543395 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: https://develop.svn.wordpress.org/trunk@5164 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 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 )