get_author_rss_link

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

WordPress Version: 6.1

/**
 * Print/Return link to author RSS feed.
 *
 * @since 1.2.0
 * @deprecated 2.5.0 Use get_author_feed_link()
 * @see get_author_feed_link()
 *
 * @param bool $display
 * @param int $author_id
 * @return string
 */
function get_author_rss_link($display = false, $author_id = 1)
{
    _deprecated_function(__FUNCTION__, '2.5.0', 'get_author_feed_link()');
    $link = get_author_feed_link($author_id);
    if ($display) {
        echo $link;
    }
    return $link;
}

WordPress Version: 4.6

/**
 * Print/Return link to author RSS feed.
 *
 * @since 1.2.0
 * @deprecated 2.5.0 Use get_author_feed_link()
 * @see get_author_feed_link()
 *
 * @param bool $echo
 * @param int $author_id
 * @return string
 */
function get_author_rss_link($echo = false, $author_id = 1)
{
    _deprecated_function(__FUNCTION__, '2.5.0', 'get_author_feed_link()');
    $link = get_author_feed_link($author_id);
    if ($echo) {
        echo $link;
    }
    return $link;
}

WordPress Version: 4.4

/**
 * Print/Return link to author RSS feed.
 *
 * @since 1.2.0
 * @deprecated 2.5.0 Use get_author_feed_link()
 * @see get_author_feed_link()
 *
 * @param bool $echo
 * @param int $author_id
 * @return string
 */
function get_author_rss_link($echo = false, $author_id = 1)
{
    _deprecated_function(__FUNCTION__, '2.5', 'get_author_feed_link()');
    $link = get_author_feed_link($author_id);
    if ($echo) {
        echo $link;
    }
    return $link;
}

WordPress Version: 4.1

/**
 * Print/Return link to author RSS feed.
 *
 * @since 1.2.0
 * @deprecated 2.5.0
 * @deprecated Use get_author_feed_link()
 * @see get_author_feed_link()
 *
 * @param bool $echo
 * @param int $author_id
 * @return string
 */
function get_author_rss_link($echo = false, $author_id = 1)
{
    _deprecated_function(__FUNCTION__, '2.5', 'get_author_feed_link()');
    $link = get_author_feed_link($author_id);
    if ($echo) {
        echo $link;
    }
    return $link;
}

WordPress Version: 3.9

/**
 * Print/Return link to author RSS feed.
 *
 * @since 1.2.0
 * @deprecated 2.5.0
 * @deprecated Use get_author_feed_link()
 * @see get_author_feed_link()
 *
 * @param bool $echo
 * @param int $author_id
 * @return string|null
 */
function get_author_rss_link($echo = false, $author_id = 1)
{
    _deprecated_function(__FUNCTION__, '2.5', 'get_author_feed_link()');
    $link = get_author_feed_link($author_id);
    if ($echo) {
        echo $link;
    }
    return $link;
}

WordPress Version: 3.7

/**
 * Print/Return link to author RSS feed.
 *
 * @since 1.2
 * @deprecated 2.5
 * @deprecated Use get_author_feed_link()
 * @see get_author_feed_link()
 *
 * @param bool $echo
 * @param int $author_id
 * @return string|null
 */
function get_author_rss_link($echo = false, $author_id = 1)
{
    _deprecated_function(__FUNCTION__, '2.5', 'get_author_feed_link()');
    $link = get_author_feed_link($author_id);
    if ($echo) {
        echo $link;
    }
    return $link;
}