This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Author: goblindegook

Description

Indigestion+ periodically collects a number of public RSS or Atom feeds and posts a list containing all new items. Each feed may provide additional display and metadata options, such as the ability to import comments or tags.

Indigestion+ began as a fork of the Indigestion plugin by Evelio Tarazona Cáceres, but eventually required a complete rewrite. It uses WordPress’s “cron” function for scheduling and Simplepie to download, cache and manipulate feeds.

Screenshots

  • Main administration panel for Indigestion+
  • Sample digest post

Installation

  1. Upload all the files to the /wp-content/plugins/indigestion-plus directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Configure Indigestion+ and your feeds

FAQ

I have multiple service accounts that I’d like to include. How do I fetch more than one feed from the same service?

At the moment, Indigestion+ allows only one feed per service via the administration panel, and there is no simple way to duplicate accounts. Expert users may attempt to work around this issue by adding new instances to the plugin source files. In order to do so, follow these steps:

  1. Enter /wp-content/plugins/indigestion-plus and open indigestion-plus-main.php for editing
  2. Locate $this->class_loader(); near the start of the file and add new instances for the services you want to duplicate immediately below:

$this->class_loader();
$this->feeds[] = new IPlusDelicious( 'Delicious 2', 'delicious-2' ); // Example duplicate Delicious account
$this->feeds[] = new IPlusCustom( 'Custom Feed 2', 'custom-2' ); // Example duplicate custom source

The first parameter is a user friendly name for the feed, which can be anything you like, while the second should be a unique identifier used by the plugin to store your feed options.

How do I create custom feeds?

Users looking to make their own feed handlers should create a new class that inherits from IPlusSuper (found in indigestion-plus-super.php), which offers several useful methods that you can use, and a few others that should be redefined to suit your specific needs:

  • get_feed_url(): Returns the feed URL to fetch based on user options (required)
  • print_options(): Prints the administration panel for your feed (optional)
  • get_item_html(): Customize how feed items are displayed in the digest (optional)

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Author: goblindegook” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Author: goblindegook” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

0.5

  • Initial version
  • Supports Delicious, Google Reader, Flickr, Picasa and generic feeds