From fdb3791d1e60a32bf08e0efbdeed700167a23bfb Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 26 Jan 2005 22:50:15 +0000 Subject: [PATCH] Add author_link filter. git-svn-id: https://develop.svn.wordpress.org/trunk@2154 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions-author.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/template-functions-author.php b/wp-includes/template-functions-author.php index 4d112254dc..b6354db01d 100644 --- a/wp-includes/template-functions-author.php +++ b/wp-includes/template-functions-author.php @@ -136,6 +136,7 @@ function get_author_link($echo = false, $author_id, $author_nicename) { $link = get_settings('home') . trailingslashit($link); } + $link = apply_filters('author_link', $link); if ($echo) echo $link; return $link; }