From 859b82387e983ceb7a231c55e09d7aa65792f305 Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Sun, 9 May 2004 18:31:58 +0000 Subject: [PATCH] added wp_filter support to the_excerpt_rss git-svn-id: https://develop.svn.wordpress.org/trunk@1250 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions-post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/template-functions-post.php b/wp-includes/template-functions-post.php index 0476017646..910f30fe39 100644 --- a/wp-includes/template-functions-post.php +++ b/wp-includes/template-functions-post.php @@ -171,7 +171,7 @@ function the_excerpt_rss($cut = 0, $encode_html = 0) { $output = $excerpt; } $output = str_replace(']]>', ']]>', $output); - echo $output; + echo apply_filters('the_excerpt_rss', $output); } function get_the_excerpt($fakeit = true) {