From 6a6a192a1fcb95d02f233efca660ab7948f7d345 Mon Sep 17 00:00:00 2001 From: rboren Date: Wed, 26 Jan 2005 22:50:15 +0000 Subject: [PATCH] Add author_link filter. git-svn-id: http://svn.automattic.com/wordpress/trunk@2154 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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; }