Add to Feedings button.
Make it easy for your readers to subscribe to your RSS feed or share specific articles directly to Feedings.
RSS feed button generator.
Generate a button for readers to subscribe to your RSS feed in Feedings.
Copy this code and paste it into your website:
How it works.
Three steps, no setup required.
1. Reader clicks
Someone clicks your "Add to Feedings" button on your site.
2. App opens
If they have Feedings, it opens directly with your feed pre-loaded.
3. Subscribed
Your feed is automatically added to their subscription list.
https://
Standard RSS feeds
feed://
Feed protocol (auto-converted)
rss://
RSS protocol (auto-converted)
ShareDing! deep links.
For developers who want to share individual articles or items.
Create a deep link with a base64-encoded JSON payload:
feedings://share?data=<base64-encoded-json>
JSON payload structure:
{
"version": 1,
"type": "item",
"data": {
"title": "Article Title",
"link": "https://example.com/article",
"description": "Article description or excerpt",
"pubDate": "2025-01-15T10:00:00Z",
"source": "Your Site Name",
"sourceColor": "#00baff",
"thumbnail": "https://example.com/image.jpg",
"sourceUrl": "https://example.com/feed.xml"
},
"timestamp": 1736935200000
}
Required fields
title, link, source - all others optional but recommended.
const payload = {
version: 1, type: "item",
data: {
title: "My Article Title",
link: "https://myblog.com/article",
description: "A short description...",
pubDate: new Date().toISOString(),
source: "My Blog",
sourceColor: "#00baff",
thumbnail: "https://myblog.com/thumb.jpg",
sourceUrl: "https://myblog.com/feed.xml"
},
timestamp: Date.now()
};
const deepLink = `feedings://share?data=${btoa(JSON.stringify(payload))}`;
{
"version": 1,
"type": "source",
"data": {
"name": "Your Site Name",
"url": "https://example.com/feed.xml",
"type": "rss",
"color": "#00baff",
"category": "Technology"
},
"timestamp": 1736935200000
}
- Article share buttons - let readers save specific articles
- Email newsletters - include deep links to individual items
- Social media - share via feedings:// links
- Mobile apps - deep link with pre-filled content
For production, use our share server API:
POST https://share.feedings.co.uk/create
Content-Type: application/json
{ "version": 1, "type": "item", "data": { ... } }
Creates short links like share.feedings.co.uk/abc123
Two ways to add the button.
Use our hosted image, or style your own.
Easiest option - copy, paste, done. Hosted by us, always up to date.
<a href="feed://yourfeed.com/feed.xml">
<img src="https://feedings.co.uk/addto.png"
alt="Add to Feedings"
style="height: 48px;">
</a>
Fully customisable - change colours, text, styling to match your site.
<a href="feed://yourfeed.com/feed.xml"
style="padding: 12px 24px;
background: #00baff;
color: #000;
border-radius: 8px;
font-weight: bold;
border: 2px solid #000;">
Add to Feedings
</a>
Add this to your theme's functions.php:
function add_feedings_button() {
$feed_url = get_bloginfo('rss2_url');
echo '<a href="feed://' . $feed_url . '"
class="feedings-button">
Subscribe in Feedings
</a>';
}
add_action('wp_footer', 'add_feedings_button');
Why add this button?
- Make it easier for readers to follow your content
- Increase RSS subscriptions
- Better reader retention
- Direct connection with your audience
- No third-party tracking or cookies
Need help setting up your button or integrating deep links?
We typically respond within 24-48 hours.

