From 5e060106066fc0c0caef6cd8ba01cfdc15aba4c0 Mon Sep 17 00:00:00 2001 From: rboren Date: Wed, 26 Jan 2005 22:49:18 +0000 Subject: [PATCH] Add category_link filter. git-svn-id: http://svn.automattic.com/wordpress/trunk@2153 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-functions-category.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/template-functions-category.php b/wp-includes/template-functions-category.php index 91b372becc..2f8eb66bd5 100644 --- a/wp-includes/template-functions-category.php +++ b/wp-includes/template-functions-category.php @@ -39,6 +39,7 @@ function get_category_link($echo = false, $category_id, $category_nicename) { $catlink = str_replace('%category%', $category_nicename, $catlink); $catlink = get_settings('home') . trailingslashit($catlink); } + $catlink = apply_filters('category_link', $catlink); if ($echo) echo $catlink; return $catlink; }