Fix for get_author_link, fixes #1430
git-svn-id: http://svn.automattic.com/wordpress/trunk@2626 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cbe1c352ad
commit
1f7552af25
|
@ -131,7 +131,7 @@ function get_author_link($echo = false, $author_id, $author_nicename) {
|
|||
$file = get_settings('home') . '/';
|
||||
$link = $file . '?author=' . $auth_ID;
|
||||
} else {
|
||||
if ('' == $author_nicename) $author_nicename = $cache_userdata[$author_id]->author_nicename;
|
||||
if ('' == $author_nicename) $author_nicename = $cache_userdata[$author_id]->user_nicename;
|
||||
$link = str_replace('%author%', $author_nicename, $link);
|
||||
$link = get_settings('home') . trailingslashit($link);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue