[-] tvonwolfe@programming.dev 2 points 5 months ago

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.

tvonwolfe

joined 5 months ago