Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active May 29, 2016 04:19
Show Gist options
  • Save nishinoshake/fac9d2672ca3fe973e57 to your computer and use it in GitHub Desktop.
Save nishinoshake/fac9d2672ca3fe973e57 to your computer and use it in GitHub Desktop.
Wordpressでサムネイルがない場合はnoimage
function getThumbnailUrl() {
if ( get_post_thumbnail_id() ) {
$thumbnailUrl = wp_get_attachment_image_src(get_post_thumbnail_id(), true)[0];
} else {
$thumbnailUrl = get_template_directory_uri() . '/images/noimage.jpg';
}
return $thumbnailUrl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment