From 103ae2cdf6150e2d6f660eb101ff968666e40a87 Mon Sep 17 00:00:00 2001 From: Konstantin Kovshenin Date: Mon, 27 Aug 2012 10:56:36 +0400 Subject: [PATCH] Correct use of get_queried_object() for author archives. The ->data object (used previously) stores the author data, but the WP_User class has the __get magic method that grants access to that data, so using get_queried_object() without ->data is correct, and compatible with 3.2, which does not use magic methods. Also url-escapes get_author_posts_url. --- archive.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archive.php b/archive.php index 03bbd8c9..c9e57b13 100644 --- a/archive.php +++ b/archive.php @@ -26,8 +26,8 @@ get_header(); ?> } elseif ( is_author() ) { // Get the queried author data. - $author = get_queried_object()->data; - printf( __( 'Author Archives: %s', '_s' ), '' . esc_html( $author->display_name ) . '' ); + $author = get_queried_object(); + printf( __( 'Author Archives: %s', '_s' ), '' . esc_html( $author->display_name ) . '' ); } elseif ( is_day() ) { printf( __( 'Daily Archives: %s', '_s' ), '' . get_the_date() . '' );