Warning: This function has been deprecated. Use get_category_feed_link() instead.

get_category_rss_link( bool $display = false, int $cat_id = 1 ): string

Print/Return link to category RSS2 feed.


Description

Top ↑

See also


Top ↑

Parameters

$display bool Optional

Default: false

$cat_id int Optional

Default: 1


Top ↑

Return

string


Top ↑

Source

File: wp-includes/deprecated.php. View all references

function get_category_rss_link($display = false, $cat_id = 1) {
	_deprecated_function( __FUNCTION__, '2.5.0', 'get_category_feed_link()' );

	$link = get_category_feed_link($cat_id, 'rss2');

	if ( $display )
		echo $link;
	return $link;
}


Top ↑

Changelog

Changelog
Version Description
2.5.0 Use get_category_feed_link()
1.2.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.