Definition:
function get_category_rss_link($echo = false, $cat_ID = 1) {}
Print/Return link to category RSS2 feed.
Parameters
- bool $echo
- int $cat_ID
Source code
function get_category_rss_link($echo = false, $cat_ID = 1) { _deprecated_function( __FUNCTION__, '2.5', 'get_category_feed_link()' ); $link = get_category_feed_link($cat_ID, 'rss2'); if ( $echo ) echo $link; return $link; }
1256
No comments yet... Be the first to leave a reply!