| Version: | 1.0 |
|---|---|
| Requires: | 2.3 |
| Tested up to: | 2.5.1 |
| # Downloads: | 6,986 |
| # Ratings: | 3 |
| Rating: | |
| Price: | Free |
From RSS WordPress pluginSometimes you want to do something extra for your RSS subscribers, you might want to give them a little bit of extra content, or simply leave out some annoying footer about subscribing to the RSS feed. This plugin facilitates that, you can simply do something like this:
if (function_exists('from_rss')) {
if (from_rss()) {
echo "Hi there RSS reader!";
}
}
And only those people who came through a link in your RSS feed in the last 30 days will see that text. It does that by giving your RSS feed other URL’s, which it 301 redirects to the correct ones while dropping a cookie to identify them as RSS subscribers.
To make sure only real RSS subscribers get this cookie, the cookie is only dropped when the referrer is either blank when someone hits an RSS URL, or the referrer is a known online feedreader. Currently these 73 online feedreaders are recognized.
Installing is easy:
- download;
- unzip;
- put the from-rss.php file in your plugins folder;
- activate;
- you can now use the
from_rss()tag anywhere you want.