permalink_single_rss()
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
- See: the_permalink_rss()
Changelog
| Since 0.71 | Introduced. |
| Deprecated since 2.3.0 | Use the_permalink_rss() |
permalink_single_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();
}