Warning: This function has been deprecated. Use the_permalink_rss() instead.

permalink_single_rss() WordPress Function

The permalink_single_rss() function is used to retrieve the permalink for the current post in an RSS feed. This is useful for making sure that links in your RSS feed point to the correct post on your website.

permalink_single_rss( string $deprecated = '' ) #

Print the permalink to the RSS feed.


Description

Top ↑

See also


Top ↑

Parameters

$deprecated

(string)(Optional)

Default value: ''


Top ↑

Source

File: wp-includes/deprecated.php

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


Top ↑

Changelog

Changelog
VersionDescription
2.3.0Use the_permalink_rss()
0.71Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More