A
by Luís Rodrigues
1 (0 reviews)
Author: goblindegook
Indigestion+ generates a periodic digest from different customisable feed sources.
Tested up to WP 2.8 (Current: 6.9.4)
v0.5
Current Version v0.5
Updated 16 years ago
Last Update on 10 Sep, 2009
Refreshed 6 hours ago
Last Refreshed on
Rank
#47,230
—
No change
Active Installs
1+
—
No change
KW Avg Position
83.4
—
No change
Downloads
2.1K
+3 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
820
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 8,199 more installs to reach 10+
Rank Changes
Current
#47,229
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| lifestream | 8 | — | Tag | 7 hours ago |
| picasa | 30 | — | Tag | 7 hours ago |
| digest | 92 | — | Tag | 7 hours ago |
| Delicious | 124 | — | Tag | 7 hours ago |
| Atom | 163 | — | Tag | 7 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 0.5
- Last Updated
- Sep 10, 2009
- Requires WP
- N/A+
- Tested Up To
- 2.8
- PHP Version
- N/A
- Author
- Luís Rodrigues
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,719
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#956
Firelight Lightbox
200K+ installs
#257
Performance Lab
200K+ installs
#279
Photo Gallery by 10Web - Mobile-Friendly Image Gallery
200K+ installs
#280
Frequently Asked Questions
Common questions about Author: goblindegook
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: Enter /wp-content/plugins/indigestion-plus and open indigestion-plus-main.php for editing 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.
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)