permalink_single_rss()WP 0.71

Deprecated since 2.3.0. It is no longer supported and may be removed in future releases. Use the_permalink_rss() instead.

Print the permalink to the RSS feed.

No Hooks.

Returns

null. Nothing (null).

Usage

permalink_single_rss( $deprecated );
$deprecated(string)
.
Default: ''

Notes

Changelog

Since 0.71 Introduced.
Deprecated since 2.3.0 Use the_permalink_rss()

permalink_single_rss() code WP 6.9

function permalink_single_rss($deprecated = '') {
	_deprecated_function( __FUNCTION__, '2.3.0', 'the_permalink_rss()' );
	the_permalink_rss();
}