# comments_rss_link()

URL: https://chugunov.pro/api-wordpress/functions/comments_rss_link/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: функция.
Появился в версии: 1.0.1.

> Устаревший элемент. Помечен устаревшим с версии 2.5.0.

## Сигнатура

```php
comments_rss_link( string $link_text = 'Comments RSS' )
```

## Описание

См. alsopost_comments_feed_link()

## Параметры

- `$link_text` `string` — необязательный, по умолчанию `'Comments RSS'`. Значение по умолчанию: 'Comments RSS'

## Исходный код

Файл: `wp-includes/deprecated.php:1145`

```php
function comments_rss_link($link_text = 'Comments RSS') {
	_deprecated_function( __FUNCTION__, '2.5.0', 'post_comments_feed_link()' );
	post_comments_feed_link($link_text);
}
```

## История изменений

- 2.5.0 — Deprecated. Use post_comments_feed_link()
- 1.0.1 — Introduced.

## Связанные

Использует: [`post_comments_feed_link`](https://chugunov.pro/api-wordpress/functions/post_comments_feed_link/), [`_deprecated_function`](https://chugunov.pro/api-wordpress/functions/_deprecated_function/).

Оригинал в официальной документации: https://developer.wordpress.org/reference/functions/comments_rss_link/
