Skip to content

Instantly share code, notes, and snippets.

@fukata
Created February 14, 2015 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fukata/de690b83d1330a57a899 to your computer and use it in GitHub Desktop.
Save fukata/de690b83d1330a57a899 to your computer and use it in GitHub Desktop.
wp-flickr-press post thumbnail usage
<?php // デフォルトサイズのサムネイル表示 ?>
<?php FlickrPress::isExtractThumbnailByPostID( get_the_ID() ) ? the_post_thumbnail() : the_post_thumbnail('thumbnail') ?>
<?php // サイズ指定でサムネイル表示 ?>
<?php FlickrPress::isExtractThumbnailByPostID( get_the_ID() ) ? the_post_thumbnail('q') : the_post_thumbnail('thumbnail') ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment