the_category_rss()
Displays the post categories in the feed.
No Hooks.
Returns
null. Nothing (null).
Usage
the_category_rss( $type );
- $type(string)
- Optional.
Default:type returned by get_default_feed()
Notes
- See: get_the_category_rss() For better explanation.
Changelog
| Since 0.71 | Introduced. |
the_category_rss() the category rss code WP 6.9.1
function the_category_rss( $type = null ) {
echo get_the_category_rss( $type );
}