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
148      $categories = get_the_category();
149      $the_list = '';
150      foreach ( (array) $categories as $category ) {
151           $category->cat_name = convert_chars($category->cat_name);
152           if ( 'rdf' == $type )
153                $the_list .= "\n\t\t<dc:subject><![CDATA[$category->cat_name]]></dc:subject>\n";
154           else
155                $the_list .= "\n\t\t<category><![CDATA[$category->cat_name]]></category>\n";
156      }
157      return apply_filters('the_category_rss', $the_list, $type);
158 }
159
160
161 function the_category_rss($type = 'rss') {
162      echo get_the_category_rss($type);
163 }
164
165
166 function rss_enclosure() {