the_content_feed()
Displays the post content for feeds.
No Hooks.
Returns
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() the content feed code WP 6.8.1
function the_content_feed( $feed_type = null ) { echo get_the_content_feed( $feed_type ); }