How to achieve plain old RSS
-
Hi. Sorry if this is a FAQ. I would like to maintain a support forum for video phones on the WordPress platform. This is what I did to test the idea: https://gxv3175.latitude64.org/. I configure the RSS reader of the phone to read the following URL: https://gxv3175.latitude64.org/?feed=rss2.
Unfortunately the output at that address is much too complicated for the reader software of the phone. It cannot accommodate with the complexities of the XML structure of that feed. I would need simple output according to the following boilerplate example borrowed from Wikipedia:
<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>RSS Title</title> <description>This is an example of an RSS feed</description> <link>https://www.someexamplerssdomain.com/main.html</link> <lastBuildDate>Mon, 06 Sep 2010 00:01:00 +0000 </lastBuildDate> <pubDate>Mon, 06 Sep 2009 16:45:00 +0000 </pubDate> <ttl>1800</ttl> <item> <title>Example entry</title> <description>Here is some text containing an interesting description.</description> <link>https://www.wikipedia.org/</link> <guid>unique string per item</guid> <pubDate>Mon, 06 Sep 2009 16:45:00 +0000 </pubDate> </item> </channel> </rss>
Can someone help me to arrive there? Thanks in advance, ph
[No bumping. If it’s that urgent, consider hiring someone.]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to achieve plain old RSS’ is closed to new replies.