wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



the_excerpt_rss › WordPress Function

Da0.71
Deprecaton/a
the_excerpt_rss ( Nessun parametro )
Definito a:
Codex:

Displays the post excerpt for the feed.



Sorgenti

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