WordPress Plugin – DualFeeds (RETIRED)

6 Feb 2018: This plugin has now been retired and is no longer available. If you are using it, it is strongly recommended that you stop using it. Why? I have no time to maintain it. It has not been updated in 10 years and should have been retired long ago!

Current version: 1.11 (28th December 2007) | Read The Changelog

DualFeeds turns your feed into two separate feeds (full post and summary), allowing your readers to subscribe the feed of their choice.

Features

  • Allows you to offer readers both a full post feed and a summary feed
  • Works for all feeds (category, tag, author, etc) not just main site feed
  • Sidebar widget with links to Full Post, Summary and Comments feeds
  • Optional links to Full Post, Summary & Comments feeds after each post
  • Feed requests for each of the three feeds can be redirected to the appropriate FeedBurner URL (use it with or instead of FeedSmith)
  • Option to turn on feed autodiscovery links for each of the three feeds

Why Use It?

Some of your subscribers prefer having the full post to read now, others prefer summaries they can skim through now and follow up later. Without DualFeeds you must choose which format to offer them.

DualFeeds lets you offer both formats, so your subscribers can make their own choice.

How It Works

DualFeeds catches all feed requests (except comments) and formats the output: By default it strips the <!–more–> tag giving the full post. If it finds dualfeed=2 in the URL, it creates a summary as follows (in order of precedence, first to last):

  • The extract is used, if one exists.
  • The post is cut at the <!–more–> tag, if it exists.
  • The post is cut after a user-definable number of characters.

Does It Work With FeedBurner?

Yes! And DualFeeds 1.1 and above can redirect feed requests for the Full Post, Summary and Comments feeds to the appropriate FeedBurner URL. Use DualFeeds to redirect the second feed only and leave the rest to FeedSmith (or similar plugin), or get DualFeeds to redirect all three.

See the Using DualFeeds With FeedBurner article for more information on using DualFeeds with FeedBurner.

Requirements

Should work on WordPress 2.x.x. Tested on WordPress 2.3, 2.2.2 and 2.1.3.

The “Full text” option must be selected in Options -> Reading.

Installation

  • Download the file and unzip it.
  • Upload the dualfeeds folder to your site’s wp-content/plugins folder.
  • Activate the plugin within WordPress.

Upgrade

  • Download the file and unzip it.
  • Upload the dualfeeds folder to your site’s wp-content/plugins folder, overwriting the existing files.
  • De-activate the plugin within WordPress, then activate it again immediately (to apply defaults)

Options

See the DualFeeds Options Guide for detailed information on Options.

Usage

The first feed is accessed through your normal feed URL. The ‘second feed’ is accessed by adding dualfeed=2 to the URL, eg:

  • http://www.yoursite.com/feed/?dualfeed=2 (if using permalinks)
  • http://www.yoursite.com/?feed=rss2&dualfeed=2 (no permalinks)

There’s no need to guess – the first and second feed URLs for your main site feed are shown in the DualFeeds Options page.

The usage of dualfeed=2 applies to all feeds (eg category feeds, etc). For information on using other feeds, see this article by Lorelle VanFossen.

Automatically Adding A Link To The ‘Second Feed’

DualFeeds includes a sidebar widget, which prominently displays links to the Full Post, Summary and Comments feeds. This can be added through the Presentation -> Widgets screen, or can be called by adding the following to sidebar.php in your theme folder:

[php]<?php if(function_exists(‘dualfeeds_sidebar’)) {dualfeeds_sidebar();} ?>[/php]

For information on the widget’s options, see the DualFeeds Options Guide.

Advanced users will probably want to set the link up manually, to tie in with their existing link / theme.

Manually Adding A Link To The ‘Second Feed’

You can manually add a link to the ‘second feed’ underneath the existing link to the normal feed.

You will need to find where the existing link is set up, copy and paste the code for the existing link, then add the dualfeed=2 parameter to the second link. You should also change the descriptions to indicate which feed is which.

Where this needs to be done depends on where your existing feed link is setup. If it is in the sidebar, you will need to edit one of the following:

  • sidebar.php in your theme folder (if you don’t use widgets)
  • widgets.php in the wp-includes folder (if you use widgets in 2.2+)
  • wp-content/plugins/widgets/widgets.php (if you use widgets pre 2.2)

You could use just enter the appropriate URL from the DualFeeds Option page, but it is better to let WordPress work out the URL (in case you change your permalink structure later). For example:

[php]<li><a href="<?php bloginfo(‘rss2_url’); ?>?dualfeed=2" title="<?php _e(‘Syndicate this site using RSS’); ?>"><?php _e(‘<abbr title="Really Simple Syndication">Entries RSS (Summary)</abbr>’); ?></a></li>
[/php]

If you don’t use permalinks, use &dualfeed=2 in place of ?dualfeed=2 above.

Compatibility

DualFeeds works with FeedBurner’s FeedSmith plugin and Flagrant Disregard’s Feedburner Plugin, although it includes most of their functionality and can replace them.

The Full Text Feed plugin may strip the <!–more–> tag before DualFeeds gets the content, meaning DualFeeds cannot use the more tag to create the summary. Most of Full Text Feed’s features are included in DualFeeds.

DualFeeds has not been extensively tested with other feed plugins but I do not envisage problems.

Related Plugins

If you simply want to offer a full post feed, rather than BOTH a full post feed AND a summary feed, then I recommend the Full Text Feed plugin.

Troubleshooting

If viewing the feed in a web browser, you may not see changes to the settings work until you clear your browser cache (Tools->Clear Private Data in Firefox, Tools->Internet Options->Delete Files in Internet Explorer).

Most modern web browsers only show summaries when viewing feeds, even if the full post is actually in the feed. Right-click on the page and choose View Source to verify whether the feed contains the full post or not.

Support

This plugin is not supported.

Password Protected Posts

WordPress does not include the content of Password protected posts in feeds, but there are some reports of a bug where the content does appear. This plugin ensures that it does not appear.

Acknowledgements

This plugin was inspired by the discussion in the comments of RT Cunningham’s Should There Be Advertisements In Blog Feeds? (link no longer accessible). RT also requested the addition of the link to the full post at the end of entries in the summary feed (added in v1.1).

The sidebar widget & feed links after each post were inspired by Glen Allsopp from ViperChill who wrote about how to increase RSS subscribers (link no longer accessible).

To provide software, you need people willing to bravely step in and test beta versions. Thanks to Dmitry for helping me track down an obscure bug in v1.0.