Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_category_rss

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
404      /**
405       * Filter all of the post categories for display in a feed.
406       *
407       * @since 1.2.0
408       *
409       * @param string $the_list All of the RSS post categories.
410       * @param string $type     Type of feed. Possible values include 'rss2', 'atom'.
411       *                         Default 'rss2'.
412       */
413      return apply_filters( 'the_category_rss', $the_list, $type );
414 }
415
416 /**
417  * Display the post categories in the feed.
418  *
419  * @since 0.71
420  * @see get_the_category_rss() For better explanation.
421  *
422  * @param string $type Optional, default is the type returned by get_default_feed().