the_content_feed()
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() the content feed WP 7.0.4
function the_content_feed( $feed_type = null ) {
echo get_the_content_feed( $feed_type );
}