• 0 Posts
  • 1 Comment
Joined 5 months ago
cake
Cake day: April 15th, 2024

help-circle
  • How do I distribute the feed beyond adding a button on my site?

    Some feed readers have the ability to auto-detect the RSS feed, if the site offers one. As an example, if your blog is located at https://mybloggingsite.com and the RSS feed can be accessed on a separate route (e.g. /feed), you can add the following somewhere under the <head> tag:

    <link rel="alternate" type="application/rss+xml" title="RSS" href="https://mybloggingsite.com/feed">
    

    I’d recommend doing this in combination with adding a visible button, so that users can access/subscribe to the feed using either option.