the_excerpt_rss

Advertisement

Summery Summery

Display the post excerpt for the feed.

Syntax Syntax

the_excerpt_rss()

Source Source

File: wp-includes/feed.php

 * Display the post excerpt for the feed.
 *
 * @since 0.71
 */
function the_excerpt_rss() {
	$output = get_the_excerpt();
	/**
	 * Filters the post excerpt for a feed.
	 *
	 * @since 1.2.0
	 *

Advertisement

Changelog Changelog

Changelog
Version Description
0.71 Introduced.

Advertisement

Leave a Reply