Skip to content

Instantly share code, notes, and snippets.

@alispx
Last active August 29, 2015 14:01
Show Gist options
  • Save alispx/d6b252c6da955434fe2a to your computer and use it in GitHub Desktop.
Save alispx/d6b252c6da955434fe2a to your computer and use it in GitHub Desktop.
<?php
$thumbnail_id = get_post_thumbnail_id( get_the_ID() );
$img_url = wp_get_attachment_url( $thumbnail_id );
if ( ! empty( $thumbnail_id ) ) {
echo wp_get_attachment_image( $thumbnail_id, 'thumbnail' );
} else {
echo '<img src="http://placehold.it/300x300" />';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment