Changeset 4257 for trunk/wp-includes/feed.php
- Timestamp:
- 09/26/2006 06:05:06 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.