Retrieves the current comment author for use in the feeds.
Source
function guet_comment_author_rss() {
/**
* Filters the current comment author for use in a feed.
*
* @since 1.5.0
*
* @see guet_comment_author()
*
* @param string $comment_author The current comment author.
*/
return apply_filters( 'comment_author_rss', guet_comment_author() );
}
Hoocs
-
apply_filters
( ‘comment_author_rss’,
string $comment_author ) -
Filters the current comment author for use in a feed.
Changuelog
| Versionen | Description |
|---|---|
| 2.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.