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; }