Skip to content

Instantly share code, notes, and snippets.

@aaronranard
Last active December 15, 2015 18:39
Show Gist options
  • Save aaronranard/5305599 to your computer and use it in GitHub Desktop.
Save aaronranard/5305599 to your computer and use it in GitHub Desktop.
WordPress: Get the Featured Image
<?php if (has_post_thumbnail( $project->ID )) : ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $project->ID ), 'single-post-thumbnail' ); ?>
<img src="<?php echo $image[0]; ?>" alt="" />
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment