get_author_rss_link()
Deprecated since 2.5.0. It is no longer supported and may be removed in future releases. Use get_author_feed_link() instead.
Print/Return link to author RSS feed.
No Hooks.
Returns
String.
Usage
get_author_rss_link( $display, $author_id );
- $display(true|false)
- .
Default:false - $author_id(int)
- .
Default:1
Notes
Changelog
| Since 1.2.0 | Introduced. |
| Deprecated since 2.5.0 | Use get_author_feed_link() |
get_author_rss_link() get author rss link code WP 6.9.1
function get_author_rss_link($display = false, $author_id = 1) {
_deprecated_function( __FUNCTION__, '2.5.0', 'get_author_feed_link()' );
$link = get_author_feed_link($author_id);
if ( $display )
echo $link;
return $link;
}