From 1ea42bc9b560eb3655c2179cdea3560549959376 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 21 Sep 2011 20:04:14 +0000 Subject: [PATCH] Do not output title attributes in the page walker since they match the anchor and are thus superfluous. Props logiclord. fixes #16783 git-svn-id: https://develop.svn.wordpress.org/trunk@18739 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 3b6d0c0db4..c7d4899360 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -1042,7 +1042,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 )