Make WordPress Core


Ignore:
Timestamp:
11/09/2007 08:31:24 PM (17 years ago)
Author:
ryan
Message:

phpdoc for get_category_feed_link(). see #5173

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/feed.php

    r6327 r6328  
    128128}
    129129
    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*/
    131143function get_category_feed_link($cat_id, $feed = 'rss2') {
    132144    $cat_id = (int) $cat_id;
Note: See TracChangeset for help on using the changeset viewer.