IntroductionFlickrFeed is a widget plugin to allow you display your latest photos on your blog. I write this plugin because I think unserialize() should be much faster than parsing XML. Installation
<?php $theme->flickrfeed(); ?> Configuration & CustomizationAfter activated it, click Configure button to setup the plugin.
You can copy flickrfeed.php to your theme directory and modify the HTML output. Advanced UsageYou can pass parameters when you call $theme->flickrfeed() in the theme. This way, you can have more than one FlickrFeed on a page. Following is an example: <?php
$theme->flickrfeed(array(
'type' => 'user',
'user_id' => '21638177@N00',
'num_item' => '6',
'size' => 'square'));
?>You do not have to put every parameters, missing parameters will use what you have set in admin. Following are supported parameters.
Download
Changelog | ||||||||||||||
► Sign in to add a comment
Is it possible to also show the title of the Flickr photo?
Hello samuel.jesse.mc
Please see flickrfeed.php, $flickrimage['title'] is the title of the Flickr photo.
Do you have some CSS to use with it?
Hello ian.monroe
I'm not sure what's your meaning. What do you like to do with CSS?