Feeds Not Updating when Re-Editing a post !

Vikashsau

New Member
Try adding (assign) a unique parameter to you RSS feed code

Code:
<guid isPermaLink="true"><![CDATA[http://...]]></guid>

This unique parameter will fix your article not updated problem.

What do you mean precisely ?

My app, MagicPaname, has categories when the feed doesn't and others where everything works fine. Any idea why ?

Thanks a lot !
 

joseph raphael

Well-Known Member
What do you mean precisely ?

My app, MagicPaname, has categories when the feed doesn't and others where everything works fine. Any idea why ?

I mean ADDING a GUID tag to your RSS xml code, check my code:

Code:
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedpress="https://feed.press/xmlns" version="2.0">
<channel>
<feedpress:locale>en</feedpress:locale>
<title>YouMobile - Specifications - OnePlus 1+</title>
<link>http://...</link>
<atom:link href="http://..." rel="self" type="application/rss+xml"/>
<description>...</description>
<pubDate>Mon, 20 Jul 2015 13:12:48 GMT</pubDate>
<language>en</language>
<item>
<title>
<![CDATA[ OnePlus One ]]>
</title>
<link>http://www.youmobile.org/article/OnePlus-One</link>
<guid isPermaLink="true">http://www.youmobile.org/article/OnePlus-One</guid>
<pubDate>Wed, 23 Apr 2014 04:51:22 CDT</pubDate>
</item>
</channel>
</rss>
 
Top