From a83b27e67b8a4d62e93bdc74a4d7b22801a9a40d Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@20615 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 48db8f925..ab2737c56 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(); }