added wp_filter support to the_excerpt_rss
git-svn-id: https://develop.svn.wordpress.org/trunk@1250 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
addba80c31
commit
859b82387e
|
@ -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