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.
Preview
Your Code
Copy this code and paste it into your website:
How It Works
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.
Supported Formats
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.
Sharing an Article
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.
JavaScript Example
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))}`;
Sharing an RSS Source
{
"version": 1,
"type": "source",
"data": {
"name": "Your Site Name",
"url": "https://example.com/feed.xml",
"type": "rss",
"color": "#00baff",
"category": "Technology"
},
"timestamp": 1736935200000
}
Use Cases
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
Server-Side Links
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
Option 1: Our Button Image
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>
Option 2: Custom HTML Button
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>
WordPress
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?
Benefits
Need Help?
Need help setting up your button or integrating deep links?
We typically respond within 24-48 hours

