I have an RSS feed that I am struggling with for some reason. It is a simple blog feed. The blog contains two fields, an image, and a wygwam field for the content.
I’ve tried using html_strip and xml_encode with no luck…
Here is my RSS construct:
{assign_variable:master_weblog_name="blog_post"}
{exp:rss:feed weblog="{master_weblog_name}"}
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>workflowGeeks</title>
<description>workflowGeeks Blog Feed</description>
<link>http://www.workflowGeeks.com</link>
<atom:link href="http://www.workflowgeeks.com/index.php/feed" rel="self" type="application/rss+xml" >
{gmt_date format="%D, %d %M %Y %H:%i:%s CST"}</pubDate>
{exp:weblog:entries weblog="{master_weblog_name}" limit="10" dynamic_start="on" disable="member_data|pagination"}
<item>
<title>{title}</title>
<description>{exp:word_limit_plus if_exceeds="140" stop_after="130"}{wb_body}{/exp:word_limit_plus}</description>
<link>{title_permalink='site/view'}</link>
<guid>{title_permalink='site/view'}#When:{gmt_entry_date format="%H:%i:%sZ"}</guid>
{gmt_entry_date format="%D, %d %M %Y %H:%i:%s CST"}</pubDate>
</item>
{/exp:weblog:entries}
</channel>
</rss>
{/exp:rss:feed}I keep getting the following on my feed:
<title>Big news: We’re showing DataCourier in today’s webinar</title>See image for error screen.
Any help would be greatly appreciated…