From 2b178e8737ad36cc9d9dbf179b06b4b50f5456a8 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 17 Nov 2005 23:17:06 +0000 Subject: [PATCH] Filter on the_content_rss. Props Kafkaesqui. fixes #1685 git-svn-id: http://svn.automattic.com/wordpress/trunk@3140 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/feed-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/feed-functions.php b/wp-includes/feed-functions.php index a9df4e78d..f97178044 100644 --- a/wp-includes/feed-functions.php +++ b/wp-includes/feed-functions.php @@ -18,7 +18,7 @@ function the_title_rss() { function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) { $content = get_the_content($more_link_text, $stripteaser, $more_file); - $content = apply_filters('the_content', $content); + $content = apply_filters('the_content_rss', $content); if ($cut && !$encode_html) { $encode_html = 2; }