diff --git a/lib/utils.php b/lib/utils.php index 29ea532..4a663be 100644 --- a/lib/utils.php +++ b/lib/utils.php @@ -74,7 +74,8 @@ function roots_title() { } elseif (is_year()) { printf(__('Yearly Archives: %s', 'roots'), get_the_date('Y')); } elseif (is_author()) { - printf(__('Author Archives: %s', 'roots'), get_the_author()); + $author = get_queried_object(); + printf(__('Author Archives: %s', 'roots'), $author->display_name); } else { single_cat_title(); }