Hi @mlv4,
The <imageSource>
and <imageAlt>
tags you’re using aren’t part of the standard RSS 2.0 format, so most RSS readers won’t recognize or display those images.
To make images appear correctly, you can:
Use an <enclosure>
tag to attach the image file — this is the standard method for media in RSS.
Or include the image inside <description>
(or <content:encoded>
) using an HTML <img>
tag.
Example:
<enclosure url="https://example.com/image.jpg" type="image/jpeg" />
or
<description><![CDATA[<img src="https://example.com/image.jpg" alt="Photo" /> Text here...]]></description>
This will ensure your feed works properly across all major RSS readers (like Feedly, Apple News, and Outlook).
You can find the official RSS 2.0 specification here for reference:
👉 https://www.rssboard.org/rss-specification
Thanks,
Aakash