the_content_feed()WP 2.9.0

Displays the post content for feeds.

No Hooks.

Return

null. Nothing (null).

Usage

the_content_feed( $feed_type );
$feed_type(string)
The type of feed. rss2 | atom | rss | rdf
Default: null

Changelog

Since 2.9.0 Introduced.

the_content_feed() code WP 6.5.2

function the_content_feed( $feed_type = null ) {
	echo get_the_content_feed( $feed_type );
}