Changeset 4257
- Timestamp:
- 09/26/06 18:05:06 (2 years ago)
- Files:
-
- trunk/wp-includes/feed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/feed.php
r4144 r4257 129 129 } 130 130 131 function the_category_rss($type = 'rss') {131 function get_the_category_rss($type = 'rss') { 132 132 $categories = get_the_category(); 133 133 $the_list = ''; … … 140 140 } 141 141 } 142 echo apply_filters('the_category_rss', $the_list, $type); 142 return apply_filters('the_category_rss', $the_list, $type); 143 } 144 145 function the_category_rss($type = 'rss') { 146 echo get_the_category_rss($type); 143 147 } 144 148
