This page redirects to an external site: https://developer.wordpress.org/reference/functions/get_rss/
Retrieves an RSS feed and parses it, then displays it as a list of links. The get_rss() function only outputs the list items, not the surrounding list tags itself.
Uses the MagpieRSS and RSSCache functions for parsing and automatic caching and the Snoopy HTTP client for the actual retrieval.
Deprecated note: Switch to using fetch_feed instead.
<?php
require_once(ABSPATH . WPINC . '/rss-functions.php');
get_rss($uri, $num = 5);
?>
The get_rss() function only outputs the list items, not the surrounding list tags itself. So, to get and display an ordered list of 5 links from an existing RSS feed:
<?php
require_once(ABSPATH . WPINC . '/rss-functions.php');
echo '<ol>';
get_rss('http://example.com/rss/feed/goes/here');
echo '</ol>';
?>
The output from the above example will look like the following:
<ol>
<li><a href='LINK FROM FEED' title='DESCRIPTION FROM FEED'>TITLE FROM FEED</a><br /></li>
(repeat for number of links specified)
</ol>