Changeset 6328 for trunk/wp-includes/feed.php
- Timestamp:
- 11/09/2007 08:31:24 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed.php
r6327 r6328 128 128 } 129 129 130 130 /** get_category_feed_link() - Get the feed link for a given category 131 * 132 * Returns a link to the feed for all post in a given category. A specific feed can be requested 133 * or left blank to get the default feed. 134 * 135 * @package WordPress 136 * @subpackage Feed 137 * @since 2.4 138 * 139 * @param int $cat_id ID of a category 140 * @param string $feed Feed type 141 * @return string Link to the feed for the category specified by $cat_id 142 */ 131 143 function get_category_feed_link($cat_id, $feed = 'rss2') { 132 144 $cat_id = (int) $cat_id;
Note: See TracChangeset
for help on using the changeset viewer.