I
by yorik
5 (1 reviews)
Image Feed Widget
A widget to display imges from RSS feeds such as twitter, flickr or youtube
Tested up to WP 3.2.1 (Current: 6.9.4)
v0.5
Current Version v0.5
Updated 14 years ago
Last Update on 02 Dec, 2011
Refreshed 6 hours ago
Last Refreshed on
Rank
#22,629
-6 this week
Active Installs
40+
—
No change
KW Avg Position
N/A
—
No change
Downloads
13.6K
+1 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(1 reviews)
Next Milestone 50
40+
50+
1,716
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 6 more installs to reach 50+
Rank Changes
Current
#22,629
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
5.0
1 reviews
Overall
100%
5
1
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
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
- Dec 02, 2011
- Requires WP
- 2.8.4+
- Tested Up To
- 3.2.1
- PHP Version
- N/A
- Author
- yorik
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- 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,717
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#956
Qi Addons For Elementor
200K+ installs
#252
MW
MW WP Form
200K+ installs
#266
WPFront Scroll Top
200K+ installs
#272
Frequently Asked Questions
Common questions about Image Feed Widget
The thumbnail images can easily sized by placing something like this in your theme's css stylesheet: .image-feed-small a img { max-height: 100px; max-width: 100px; } The above css code will apply to all widgets. You can use "height" and "width" instead of "max-height" and "max-width" if you prefer.
Easy too, the content of the widget is a list, so you just need to add this to your theme's css stylesheet: image-feed-list { display: inline; } you must of course specify a width that allows more than one image to fit in your sidebar...
Anywhere in your theme templates, you can display a list of images coming from rss feeds. Just place the following code where you want the images to appear: <?php get_image_feed_list($feedslist, $maxfeeds, $divname, $printtext, $target, $useenclosures); ?>
* $feedlist is a comma-separated list of rss feed urls (mandatory) * $maxfeeds is the maximum number of images to display (optional, default = 90) * $divname is a name suffix for the list class. "myList" will become "image-feed-myList" (optional) * $printtext must be 1 if you want the image title to be printed below the image (optional) * $target is "samewindow" or "newwindow", depending on where you want links to open (optional, default = samewindow) * $useenclosures is "yes" or "no" (optional, default = yes). Use this if you don't want to use the tag in the feed and force the script to find an image link in the feed item description. Some feeds like flickr use an original-size image in enclosure and a thumbnail-size image in the description, don't ask me why... Example: <?php get_image_feed_list("http://www.example1.com/rss,http://www.example2.com/rss2", 10, "myImagesList"); ?>