added wp_filter support to the_excerpt_rss
git-svn-id: http://svn.automattic.com/wordpress/trunk@1250 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cb1f6849e2
commit
e691978606
|
@ -171,7 +171,7 @@ function the_excerpt_rss($cut = 0, $encode_html = 0) {
|
||||||
$output = $excerpt;
|
$output = $excerpt;
|
||||||
}
|
}
|
||||||
$output = str_replace(']]>', ']]>', $output);
|
$output = str_replace(']]>', ']]>', $output);
|
||||||
echo $output;
|
echo apply_filters('the_excerpt_rss', $output);
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_the_excerpt($fakeit = true) {
|
function get_the_excerpt($fakeit = true) {
|
||||||
|
|
Loading…
Reference in New Issue