I missed the option to filter recent photos by tags. I needed to show just photos with a special tag (for example 'photoblog') to filter out some stuff that i don't like to show in the sidebar (lots of testphotos for example). So i decided to duplicate the "show_recent" function, call it "show_recent_ex" and enhanced it with the $tags options of the "show_random" function. It would be nice to have that feature build in, in a next version. But if you like to use that right now, open the FAlbum.class.php and insert this: /* nSonic, 01.12.2010: Function to show recent photos filterd by tags - commonly used in the sidebar */ function show_recent_ex($num = 5, $tags = '', $style = 0, $size = '') { $this->logger->info("show_recent_ex($num, $tags, $style, $size)"); if ($size == '') { $size = $this->options['tsize']; } $output = $this->_get_cached_data("show_recent_ex-$num-$tags-$style-$size"); if (!isset ($output)) { $output = ''; if ($tags == '') { $resp = $this->_call_flickr_php('flickr.photos.search', array ('user_id' => $this->options['nsid'], 'per_page' => $num, 'sort' => 'date-taken-desc')); } else { $resp = $this->_call_flickr_php('flickr.photos.search', array ('user_id' => $this->options['nsid'], 'tags' => $tags, 'tag_mode' => 'all', 'per_page' => $num)); //'sort' => 'date-taken-desc', , 'page' => '1')); } if (!isset ($resp)) { return; } if ($style == 0) { $output .= "\n"; } else { $output .= "\n"; } $this->_set_cached_data("show_recent-$num-$style-$size", $output); } return $output; }