Skip to content

Instantly share code, notes, and snippets.

@cassler
Created July 6, 2015 18:52
Show Gist options
  • Save cassler/403fae250f7058148f8b to your computer and use it in GitHub Desktop.
Save cassler/403fae250f7058148f8b to your computer and use it in GitHub Desktop.
Post Thumbnail as BG
<?php
$css = "style=''";
if ( has_post_thumbnail( get_the_ID ) ) :
$size = 'large'; // choose size of image to be used
$thumb_id = get_post_thumbnail_id();
$thumb_object = wp_get_attachment_image_src($thumb_id, $size, true);
$thumb_url = $thumb_object[0];
$css = "background-image:url('$thumb_url'); background-size:cover; background-position:top-center no-repeat;"
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment