Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

get post thumbnail 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; ?>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #post #thumbnail #url
ADD COMMENT
Topic
Name
4+4 =