# Discourse RSS Feed - Troubleshooting

**URL:** https://meta.discourse.org/t/discourse-rss-feed-troubleshooting/286837
**Category:** Support
**Tags:** rss-polling
**Created:** [November 28, 2023, 12:37pm UTC](https://meta.discourse.org/t/discourse-rss-feed-troubleshooting/286837 "2023-11-28T12:37:57Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![KCAS](https://avatars.discourse-cdn.com/v4/letter/k/13edae/32.png) [@KCAS](https://meta.discourse.org/u/KCAS)
#### Post date: [November 28, 2023, 12:37pm UTC](https://meta.discourse.org/t/discourse-rss-feed-troubleshooting/286837/1 "2023-11-28T12:37:57Z")

</div>

Hello,

We’ve created a discourse specific RSS feed, so that an HTML image tags are included within the description CD data so images are also shown. This was to resolve an issue with a lack of images being included within RSS posted pages.

However, it does not seem to post any content from the feed and unsure why. Is there a way to troubleshoot feed collection with RSS poling ?

Example feed: [\<![CDATA[New Product! Pro Pick Lock Spring - Collection of repinning springs]]\>](https://labs.ksec.co.uk/wp-content/uploads/sites/4/woo-feed/custom2/xml/recentproductsrss.xml)

Syantax

```plaintext
<?xml version="1.0" encoding="utf-8" ?>
<items>
    {{each product start}}
      <item>
        <title><![CDATA[New Product! {title}]]></title>
        <link>{link}</link>
        <description><![CDATA[{wp_attr_mapping_Dynamic_HTML_Image_and_description}]]></description>
        <img><![CDATA[{image}</img>]]></img>
        <guid>{link}</guid>
        <PubDate>{date_created}</PubDate>
      </item>
    {{each product end}}
</items>

```
