Post-Platform Digital Publishing Toolkit

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
guides:rss [2025/11/19 11:52] wgpguides:rss [2025/12/27 14:41] (current) wgp
Line 61: Line 61:
  
 An example of a RSS.xml file: An example of a RSS.xml file:
-<code><?xml version="1.0" encoding="UTF-8" ?>+<code><?xml version="1.0" encoding="UTF-8"?>
 <rss version="2.0"> <rss version="2.0">
- 
 <channel> <channel>
-  <title>My Title</title> +  <title>put channel title here</title> 
-  <link>https://mywebsite.com</link> +  <link>put channel url here</link> 
-  <description>My Description</description>+  <description>put channel description here</description>
  
-  
   <item>   <item>
-    <title>Title of the Entry</title> +    <title>put item title here</title> 
-    <link>Link of the Entry</link> +    <link>put item url here</link> 
-    <description> +    <description>put item description here</description> 
- +  </item>
-<![CDATA[    <img src=“Image Link">    +
- +
-      My Text here  ]]>  </description> +
- </item> +
  
   <item>   <item>
-    <title>Title of the Entry</title>+    <title>put item title here</title
 +    <link>put item url here</link> 
 +    <description>put item description here</description> 
 +  </item>
  
-    <link>Link of the Entry</link> 
-     
- 
-<description> 
- 
- <![CDATA[    <img src=“Image Link">    
- 
-My text <p>  
- 
-My text 
-        
- ]]>  
-</description> 
- 
-  </item> 
 </channel> </channel>
- 
 </rss> </rss>
 </code> </code>
 +
 +After uploading your feed to your server, check if your RSS feed works well at [[https://validator.w3.org/feed/|W3C Feed Validation Service]].