From c6689953bbbad6986fad07a7a8c4f96dc4ead7da Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 27 Apr 2012 18:17:41 +0000 Subject: [PATCH] Add 'author' to rel attribute for get_the_author_link(). props sirzooro, CoenJacobs, Ipstenu. fixes #20047. git-svn-id: https://develop.svn.wordpress.org/trunk@20615 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/author-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/author-template.php b/wp-includes/author-template.php index 48db8f9253..ab2737c563 100644 --- a/wp-includes/author-template.php +++ b/wp-includes/author-template.php @@ -135,7 +135,7 @@ function the_author_meta($field = '', $user_id = false) { */ function get_the_author_link() { if ( get_the_author_meta('url') ) { - return '' . get_the_author() . ''; + return '' . get_the_author() . ''; } else { return get_the_author(); }