функция
since 2.0.0
get_comment_author_rss()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
get_comment_author_rss(): string
Описание
Извлекает автора текущего комментария для использования в лентах.
Возвращаемое значение
string
Исходный код
wp-includes/feed.php:329
function get_comment_author_rss() {
/**
* Filters the current comment author for use in a feed.
*
* @since 1.5.0
*
* @see get_comment_author()
*
* @param string $comment_author The current comment author.
*/
return apply_filters( 'comment_author_rss', get_comment_author() );
}
История изменений
| Версия | Описание |
|---|---|
| 2.0.0 | Introduced. |

