Plugin Directory

Image Feed Widget

How do I define the size of the thumbnails?

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.

What about having several images per line?

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...

And how do I use the plugin in my theme?

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); ?>

Where: * $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)

Example:

<?php get_image_feed_list("http://www.example1.com/rss,http://www.example2.com/rss2", 10, "myImagesList"); ?>

Download

FYI

Compatibility

+
=
Not enough data

1 person says it works.
1 person says it's broken.

Log in to vote.

50,2,1

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(2 ratings)