WordPressで、flickrの写真からギャラリーをつくりたい

flickrの写真からギャラリーをつくりたく調べると、flickrRSSというプラグインで実現できることがわかった。
WordPressにFlickrの写真を読み込む!!便利な2つのプラグイン『flickrRSS』と『Flickr + Highslide』 | HTML5でサイトをつくろうページを参考にさせてもらった。

確認ページ:ギャラリー

get_flickrRSS関数は引数を取れるみたい。今度試す予定。

  1. ‘type’ => ‘user’ – The type of Flickr images that you want to show. Possible values: ‘user’, ‘favorite’, ‘set’, ‘group’, ‘public’
  2. ‘tags’ => ” – Optional: Can be used with type = ‘user’ or ‘public’, comma separated
  3. ‘set’ => ” – Optional: To be used with type = ‘set’
  4. ‘id’ => ” – Optional: Your Group or User ID. To be used with type = ‘user’ or ‘group’
  5. ‘do_cache’ => false – Enable the image cache
  6. ‘cache_sizes’ => array(‘square’) – What are the image sizes we want to cache locally? Possible values: ‘square’, ‘thumbnail’, ‘small’, ‘medium’ or ‘large’
  7. ‘cache_path’ => ” – Where the images are saved (server path)
  8. ‘cache_uri’ => ” – The URI associated to the cache path (web address)
  9. ‘num_items’ => 4 – The number of images that you want to display
  10. ‘before_list’ => ” – The HTML to print before the list of images
  11. ‘html’ => ‘%title%‘ – the code to print out for each image. Meta tags available: %flickr_page%, %title%, %image_small%, %image_square%, %image_thumbnail%, %image_medium%, %image_large%
  12. ‘default_title’ => “Untitled Flickr photo” – the default title
  13. ‘after_list’ => ” – the HTML to print after the list of images

参考サイト

関連エントリー

  1. WordPressで”続きを読む”リンクを追加する
  2. WordPressプラグインX個
  3. YouTube APIとjQuery
  4. WordPressでソーシャルボタンを設置したい
  5. YouTube Data API メモ
This entry was posted in 未分類 and tagged , . Bookmark the permalink.