Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DevShahidul/1ca8a71a06b2f75059debc454a2eb598 to your computer and use it in GitHub Desktop.
Save DevShahidul/1ca8a71a06b2f75059debc454a2eb598 to your computer and use it in GitHub Desktop.
if ( have_posts() ) : while ( have_posts() ) : the_post();
if ( has_post_thumbnail() ) {
$feat_image_url = wp_get_attachment_url( get_post_thumbnail_id() );
echo '<div style="background-image:url('.$feat_image_url.');"></div>';
}
endwhile;
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment