Once you understand how all the Apple Podcasts tags fit into the big picture of your RSS feed, it’s time to implement them within your feed. Some of these tags are specific to the <channel> section of your RSS 2.0 feed and some are specific to individual <item>. In order for any of these additions to work, you must designate a link to the Document Type Definition (DTD) for the Apple Podcasts namespace changes. In a standard RSS 2.0 feed, the namespace definition looks like this:

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

This tells aggregators to interpret your feed as an RSS 2.0 document and display it accordingly. Adding the Apple Podcasts DTD for podcasting requires you to include a second xmlns: tag within the rss definition space like this:
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:podcast="https://podcastindex.org/namespace/1.0" version="2.0">

Make sure you do not define rss twice like the example below because this will break some aggregators:
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">
<rss version="2.0" xmlns:itunes="http://www.itunes.com/DTDs/Podcast-1.0.dtd">


Discover more from Jake Ludington

Subscribe to get the latest posts sent to your email.

Trending

Discover more from Jake Ludington

Subscribe now to keep reading and get access to the full archive.

Continue reading

Discover more from Jake Ludington

Subscribe now to keep reading and get access to the full archive.

Continue reading