Created
December 20, 2013 14:21
-
-
Save paulgosnell/8055419 to your computer and use it in GitHub Desktop.
get featured image URL
This file contains 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
<?php | |
if (has_post_thumbnail( $post->ID ) ) { | |
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); | |
?> | |
<section id="masthead"> | |
<img src="<?php echo $image[0]; ?>" alt="<?php the_title(); ?>" class="scale-with-grid"> | |
</section> | |
<?php | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment