the_category_rss()WP 0.71

Displays the post categories in the feed.

No Hooks.

Return

null. Nothing (null).

Usage

the_category_rss( $type );
$type(string)
Optional.
Default: type returned by get_default_feed()

Notes

Changelog

Since 0.71 Introduced.

the_category_rss() code WP 6.5.2

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