permalink_single_rss()WP 0.71

Deprecated from version 2.3.0. It is no longer supported and can be removed in future releases. Use the_permalink_rss() instead.

Print the permalink to the RSS feed.

No Hooks.

Return

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.5.2

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