Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created March 28, 2017 14:47
Show Gist options
  • Select an option

  • Save luisfelipe-dev/5a3c95a8d2199194162435313b7eff7b to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/5a3c95a8d2199194162435313b7eff7b to your computer and use it in GitHub Desktop.
Colocar a imagem de destaque do Wordpress como background.
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post' ); ?>
<div class="foto_blog-novo" style='background: url("<?php echo $image[0]; ?>") no-repeat center; background-size: cover;' >
</div><!-- /foto_blog-novo -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment