Skip to content

Instantly share code, notes, and snippets.

@aijodesigns
Created December 31, 2014 15:44
Show Gist options
  • Save aijodesigns/c94084c14786a7f15506 to your computer and use it in GitHub Desktop.
Save aijodesigns/c94084c14786a7f15506 to your computer and use it in GitHub Desktop.
Featured Image as Background [WordPress]
<?php if (has_post_thumbnail( $post->ID ) ): ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
$image = $image[0];
?>
<div class="interior-featured-image" style="background-image: url('<?php echo $image; ?>'); background-repeat:no-repeat; background-position:center center; background-size:cover;" ></div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment