Warning: This function has been deprecated. Use get_category_feed_link() instead.
get_category_rss_link( bool $echo = false, int $cat_ID = 1 )
Print/Return link to category RSS2 feed.
Description Description
See also See also
Parameters Parameters
- $echo
-
(bool) (Optional)
Default value: false
- $cat_ID
-
(int) (Optional)
Default value: 1
Return Return
(string)
Source Source
File: wp-includes/deprecated.php
function get_category_rss_link($echo = false, $cat_ID = 1) { _deprecated_function( __FUNCTION__, '2.5.0', 'get_category_feed_link()' ); $link = get_category_feed_link($cat_ID, 'rss2'); if ( $echo ) echo $link; return $link; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.5.0 | Use get_category_feed_link() |
1.2.0 | Introduced. |