permalink_single_rss

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

WordPress Version: 4.6

/**
 * Print the permalink to the RSS feed.
 *
 * @since 0.71
 * @deprecated 2.3.0 Use the_permalink_rss()
 * @see the_permalink_rss()
 *
 * @param string $deprecated
 */
function permalink_single_rss($deprecated = '')
{
    _deprecated_function(__FUNCTION__, '2.3.0', 'the_permalink_rss()');
    the_permalink_rss();
}

WordPress Version: 4.4

/**
 * Print the permalink to the RSS feed.
 *
 * @since 0.71
 * @deprecated 2.3.0 Use the_permalink_rss()
 * @see the_permalink_rss()
 *
 * @param string $deprecated
 */
function permalink_single_rss($deprecated = '')
{
    _deprecated_function(__FUNCTION__, '2.3', 'the_permalink_rss()');
    the_permalink_rss();
}

WordPress Version: 3.9

/**
 * Print the permalink to the RSS feed.
 *
 * @since 0.71
 * @deprecated 2.3.0
 * @deprecated Use the_permalink_rss()
 * @see the_permalink_rss()
 *
 * @param string $deprecated
 */
function permalink_single_rss($deprecated = '')
{
    _deprecated_function(__FUNCTION__, '2.3', 'the_permalink_rss()');
    the_permalink_rss();
}

WordPress Version: 3.7

/**
 * Print the permalink to the RSS feed.
 *
 * @since 0.71
 * @deprecated 2.3
 * @deprecated Use the_permalink_rss()
 * @see the_permalink_rss()
 *
 * @param string $deprecated
 */
function permalink_single_rss($deprecated = '')
{
    _deprecated_function(__FUNCTION__, '2.3', 'the_permalink_rss()');
    the_permalink_rss();
}