the_category_rss()WP 0.71

Displays the post categories in the feed.

Хуков нет.

Возвращает

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

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

the_category_rss( $type );
$type(строка)
Optional.
По умолчанию: type returned by get_default_feed()

Заметки

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

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

Код the_category_rss() WP 6.5.2

function the_category_rss( $type = null ) {
	echo get_the_category_rss( $type );
}