diff --git src/wp-includes/general-template.php src/wp-includes/general-template.php
index 83eabe8..38820d7 100644
|
|
|
function get_the_archive_title() { |
| 1457 | 1457 | } elseif ( is_tag() ) { |
| 1458 | 1458 | $title = sprintf( __( 'Tag: %s' ), single_tag_title( '', false ) ); |
| 1459 | 1459 | } elseif ( is_author() ) { |
| 1460 | | $title = sprintf( __( 'Author: %s' ), '<span class="vcard">' . get_the_author() . '</span>' ); |
| | 1460 | $title = sprintf( __( 'Author: %s' ), '<span class="vcard">' . get_queried_object()->display_name . '</span>' ); |
| 1461 | 1461 | } elseif ( is_year() ) { |
| 1462 | 1462 | $title = sprintf( __( 'Year: %s' ), get_the_date( _x( 'Y', 'yearly archives date format' ) ) ); |
| 1463 | 1463 | } elseif ( is_month() ) { |