get_comment_author_rss

The timeline below displays how wordpress function get_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

/**
 * Retrieves the current comment author for use in the feeds.
 *
 * @since 2.0.0
 *
 * @return string Comment Author.
 */
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());
}

WordPress Version: 4.6

/**
 * Retrieve the current comment author for use in the feeds.
 *
 * @since 2.0.0
 *
 * @return string Comment Author
 */
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());
}

WordPress Version: 4.1

/**
 * Retrieve the current comment author for use in the feeds.
 *
 * @since 2.0.0
 *
 * @return string Comment Author
 */
function get_comment_author_rss()
{
    /**
     * Filter 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());
}

WordPress Version: 3.9

/**
 * Retrieve the current comment author for use in the feeds.
 *
 * @since 2.0.0
 * @uses get_comment_author()
 *
 * @return string Comment Author
 */
function get_comment_author_rss()
{
    /**
     * Filter 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());
}

WordPress Version: 3.7

/**
 * Retrieve the current comment author for use in the feeds.
 *
 * @package WordPress
 * @subpackage Feed
 * @since 2.0.0
 * @uses apply_filters() Calls 'comment_author_rss' hook on comment author.
 * @uses get_comment_author()
 *
 * @return string Comment Author
 */
function get_comment_author_rss()
{
    return apply_filters('comment_author_rss', get_comment_author());
}