Definition:
function the_excerpt_rss() {}
Display the post excerpt for the feed.
Defined filters
- the_excerpt_rss
apply_filters('the_excerpt_rss', $output)
Source code
function the_excerpt_rss() { $output = get_the_excerpt(); echo apply_filters('the_excerpt_rss', $output); }
3009
No comments yet... Be the first to leave a reply!