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: http://svn.automattic.com/wordpress/trunk@18739 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7aedd7ec52
commit
69a52799a5
|
@ -1042,7 +1042,7 @@ class Walker_Page extends Walker {
|
||||||
|
|
||||||
$css_class = implode(' ', apply_filters('page_css_class', $css_class, $page));
|
$css_class = implode(' ', apply_filters('page_css_class', $css_class, $page));
|
||||||
|
|
||||||
$output .= $indent . '<li class="' . $css_class . '"><a href="' . get_permalink($page->ID) . '" title="' . esc_attr( wp_strip_all_tags( apply_filters( 'the_title', $page->post_title, $page->ID ) ) ) . '">' . $link_before . apply_filters( 'the_title', $page->post_title, $page->ID ) . $link_after . '</a>';
|
$output .= $indent . '<li class="' . $css_class . '"><a href="' . get_permalink($page->ID) . '">' . $link_before . apply_filters( 'the_title', $page->post_title, $page->ID ) . $link_after . '</a>';
|
||||||
|
|
||||||
if ( !empty($show_date) ) {
|
if ( !empty($show_date) ) {
|
||||||
if ( 'modified' == $show_date )
|
if ( 'modified' == $show_date )
|
||||||
|
|
Loading…
Reference in New Issue