get_category_feed_link()WP 2.5.0

Retrieves the feed link for a category.

Returns a link to the feed for all posts in a given category. A specific feed can be requested or left blank to get the default feed.

Хуков нет.

Возвращает

Строку. Link to the feed for the category specified by $cat.

Использование

get_category_feed_link( $cat, $feed );
$cat(int|WP_Term|объект) (обязательный)
The ID or category object whose feed link will be retrieved.
$feed(строка)
Feed type. Possible values include 'rss2', 'atom'.
По умолчанию: value of get_default_feed()

Список изменений

С версии 2.5.0 Введена.

Код get_category_feed_link() WP 6.4.3

function get_category_feed_link( $cat, $feed = '' ) {
	return get_term_feed_link( $cat, 'category', $feed );
}