Нашёл вот такой парсёр rss. Как вывести 10 последних сообщений из ленты rss
$rss = simplexml_load_file ( 'https://naceka-online.ru/rss/content/2/feed.rss' );
foreach ( $rss->channel->item as $item )
{
$image = $item->enclosure->attributes()->url;
$tt = $item->title;
$st = $item->description;
echo ' <img height=60px width= 60px src="' .$image. '" /> ';
echo ' <a href="'.$item->link.'">'.$tt.'</a> ';
echo '<div>'.$st.'</div>';
echo '<div><FONT size=1>'.$item->pubDate.'</FONT></div>';
}```