Skip to content

Instantly share code, notes, and snippets.

@sarvar
Created December 23, 2015 17:15
Show Gist options
  • Save sarvar/e4a77030d08b8457d35a to your computer and use it in GitHub Desktop.
Save sarvar/e4a77030d08b8457d35a to your computer and use it in GitHub Desktop.
Use post thumbnail as div background
<?php if ( have_posts() ) : query_posts('p=64');
while ( have_posts() ) : the_post(); ?>
<?php
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), false, '' );
?>
<? endwhile; endif; wp_reset_query(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment