Ticket #26554: 26554.patch
File 26554.patch, 725 bytes (added by , 9 years ago) |
---|
-
wp-includes/class-wp-theme.php
658 658 break; 659 659 case 'Author' : 660 660 if ( $this->get('AuthorURI') ) { 661 static $attr = null; 662 if ( ! isset( $attr ) ) 663 $attr = esc_attr__( 'Visit author homepage' ); 664 $value = sprintf( '<a href="%1$s" title="%2$s">%3$s</a>', $this->display( 'AuthorURI', true, $translate ), $attr, $value ); 661 $value = sprintf( '<a href="%1$s">%2$s</a>', $this->display( 'AuthorURI', true, $translate ), $value ); 665 662 } elseif ( ! $value ) { 666 663 $value = __( 'Anonymous' ); 667 664 }