WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Template Tags/the category rss

Description

Displays the name of the category or categories a post belongs to in RSS format. This tag must be used within The Loop.

Usage

 <?php the_category_rss$type ?> 

Parameters

$type
(string) (optional) The type of feed to display to. Valid values:
  • rss2
  • rss
  • rdf
  • atom
Default: rss2

Example

Fragment of an RSS2 feed page.

<?php the_category_rss() ?>
<guid><?php the_permalink($id); ?></guid>

Related

See also index of Function Reference and index of Template Tags.