comment_author_rss

The timeline below displays how wordpress function comment_author_rss has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.1

/**
 * Displays the current comment author in the feed.
 *
 * @since 1.0.0
 */
function comment_author_rss()
{
    echo get_comment_author_rss();
}

WordPress Version: 3.9

/**
 * Display the current comment author in the feed.
 *
 * @since 1.0.0
 */
function comment_author_rss()
{
    echo get_comment_author_rss();
}

WordPress Version: 3.7

/**
 * Display the current comment author in the feed.
 *
 * @package WordPress
 * @subpackage Feed
 * @since 1.0.0
 */
function comment_author_rss()
{
    echo get_comment_author_rss();
}