the_content_feed()WP 2.9.0

Displays the post content for feeds.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

the_content_feed( $feed_type );
$feed_type(строка)
The type of feed. rss2 | atom | rss | rdf
По умолчанию: null

Список изменений

С версии 2.9.0 Введена.

Код the_content_feed() WP 6.5.2

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