Mobile app version of vmapp.org
Login or Join
Correia994

: Why is the title of a RSS Feed coming as "unknown title" in RSS feeds reader? The title of a feed is "unknown title" in Google reader. What could be the reason? Am I correct if I'm assuming

@Correia994

Posted in: #Feeds #Title

The title of a feed is "unknown title" in Google reader. What could be the reason? Am I correct if I'm assuming that it should be appearing similar for all the subscribers of that feed and other feed-readers (other than Google reader) as well.

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Correia994

3 Comments

Sorted by latest first Latest Oldest Best

 

@Cofer257

Would have been helpful to post your feed link... Anyway RSS feeds need a <title> tag. Here is the basic format the feed should be in:

<rss version="2.0">
<channel>
<title>Your Title</title>
<link>http://example.com</link>
<description>Example</description>

<item>
<!-- item details -->
</item>
<!-- many more items -->

</channel>
</rss>

10% popularity Vote Up Vote Down


 

@Harper822

Your feed is possibly missing the <title> tag. View the source for your feed page and search for the text "<title>" to confirm this. The tag will likely be missing or empty.

To help resolve it, you'd need to share what's generating the RSS feed, be it CMS software (which?) or a custom script.

If Google Reader can't find a title, the chances are high that other feed readers can't either.

10% popularity Vote Up Vote Down


 

@Voss4911412

Make sure you validate the feed, at least:
validator.w3.org/feed/
Doesn't guarantee it will work, but certainly helps.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme