wpseek.com
A WordPress-centric search engine for devs and theme authors



the_excerpt_rss › WordPress Function

Since0.71
Deprecatedn/a
the_excerpt_rss ( No parameters )
Defined at:
Codex:

Displays the post excerpt for the feed.



Source

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 );
}