Skip to content

Instantly share code, notes, and snippets.

@raaar
Created August 3, 2012 11:32
Show Gist options
  • Save raaar/3246822 to your computer and use it in GitHub Desktop.
Save raaar/3246822 to your computer and use it in GitHub Desktop.
WORDPRESS: featured image url
<?php if (has_post_thumbnail( $post->ID ) ): ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
<div id="custom-bg" style="background-image: url('<?php echo $image[0]; ?>')">
</div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment