the_excerpt_rss() WP 1.0
Display the post excerpt for the feed.
Works based on: get_the_excerpt()
1 time = 0.000652s = slow | 50000 times = 1.71s = 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 5.6
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 );
}Related Functions
From tag: RSS
More from category: Posts, pages...
- edit_post_link()
- get_delete_post_link()
- get_edit_post_link()
- get_permalink()
- get_post_field()
- get_post_status()
- get_post_time()
- get_sample_permalink()
- get_the_content()
- get_the_date()
- get_the_excerpt()
More from Template Tags: Posts, Pages, ...
- body_class()
- get_post_format()
- have_posts()
- in_the_loop()
- next_image_link()
- next_post_link()
- next_posts_link()
- post_class()