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
153      foreach ( (array) $categories as $category ) {
154           $category->cat_name = convert_chars($category->cat_name);
155           if ( 'rdf' == $type )
156                $the_list .= "\n\t\t<dc:subject><![CDATA[$category->cat_name]]></dc:subject>\n";
157           if ( 'atom' == $type )
158                $the_list .= "<category scheme='$home' term='$category->cat_name' />";
159           else
160                $the_list .= "\n\t\t<category><![CDATA[$category->cat_name]]></category>\n";
161      }
162      return apply_filters('the_category_rss', $the_list, $type);
163 }
164
165
166 function the_category_rss($type = 'rss') {
167      echo get_the_category_rss($type);
168 }
169
170 function html_type_rss() {
171      $type = get_bloginfo('html_type');