the_excerpt_rss()
Display the post excerpt for the feed.
Uses: get_the_excerpt()
1 time — 0.000652 sec (slow) | 50000 times — 1.71 sec (fast) | PHP 7.1.2, WP 4.7.3
Hooks from the function
Return
null
. Nothing.
Usage
the_excerpt_rss();
Changelog
Since 0.71 | Introduced. |
Code of the_excerpt_rss() the excerpt rss WP 6.0
function the_excerpt_rss() { $output = get_the_excerpt(); /** * Filters the post excerpt for a feed. * * @since 1.2.0 * * @param string $output The current post excerpt. */ echo apply_filters( 'the_excerpt_rss', $output ); }