Using flickr api in custom wordpress plugin

I see two issues right off the bat that are going to cause problems: $this->myApiKey = $flickr_key; $thix->myApiSecret = $flickr_secret; myApiKey and myApiSecret aren’t in your code anywhere, so setting them here isn’t doing anything. They should be $this->flickr_key and $this->flickr_secret. You have a typo in the 2nd line above. Change $thix to $this and … Read more

Flickr plugin that will display photos from multiple group pools? [closed]

Flickr Gallery is WordPress plugin that goes beyond the basics and allows several options for searching and displaying Flickr photos. I couldn’t tell from your question, but if you want to display each group separately (i.e., a set of thumbnails from Group 1 next to a set of thumbnails from Group 2), then this will … Read more