flickrRSS for WordPress
This plugin for WordPress allows you to display Flickr photos on your weblog. It supports user, set, favorite, group and community photostreams, and is relatively easy to setup and configure via a settings panel. The plugin also has cache support, allowing you to save thumbnails on your own server.
Installation
- Put the flickrRSS files into your plugins directory.
- Activate the plugin.
- Configure your options under the Settings tab.
- To use an image cache, create a writable directory and specify its location in the settings.
- Add
<?php get_flickrRSS(); ?>to your templates where you want the images to appear (or use the widget system).
Support & Questions
Please check out the common problems and solutions page.
If you're still have questions, check out the flickrRSS forum. Do a quick search before posting, other people may have run into a similar thing.
Advanced: Parameters
The plugin also supports a number of parameters, allowing you to have multiple instances of the plugin across your site.
Example 1
This would show the 10 most recent public photos tagged with london and people.
<?php get_flickrRSS(array(
'num_items' => 10,
'type' => 'public',
'tags' => 'london,people'));
?>
Example 2
This would show the 20 most recent thumbnail sized photos from the specified user's set.
<?php get_flickrRSS(array(
'set' => '72157601681097311',
'num_items' => 20,
'type' => 'set',
'id' => '44124462494@N01'));
?>
Parameters List
'type' => 'user'— The type of Flickr images that you want to show. Possible values: 'user', 'favorite', 'set', 'group', 'public''tags' => ''— Optional: Can be used with type = 'user' or 'public', comma separated'set' => ''— Optional: To be used with type = 'set''id' => ''— Optional: Your Group or User ID. To be used with type = 'user' or 'group''do_cache' => false— Enable the image cache'cache_sizes' => array('square')— What are the image sizes we want to cache locally? Possible values: 'square', 'thumbnail', 'small', 'medium' or 'large''cache_path' => ''— Where the images are saved (server path)'cache_uri' => ''— The URI associated to the cache path (web address)'num_items' => 4— The number of images that you want to display'before_list' => ''— The HTML to print before the list of images'html' => '<a href="%flickr_page%" title="%title%"><img src="%image_square%" alt="%title%"/></a>'— the code to print out for each image.
Meta tags available: %flickr_page%, %title%, %image_small%, %image_square%, %image_thumbnail%, %image_medium%, %image_large%'default_title' => "Untitled Flickr photo"— the default title'after_list' => ''— the HTML to print after the list of images
Help me
Dreamhost — sign up using the code 8FACE and get $50 off your first year.
PayPal — a straight up cash donation.
Threadless — buy a t-shirt with my code and I get to save money buying mine.
RSS Feed — subscribe to my weblog feed.






