Last active
May 29, 2016 04:19
-
-
Save nishinoshake/fac9d2672ca3fe973e57 to your computer and use it in GitHub Desktop.
Wordpressでサムネイルがない場合はnoimage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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