How to get WordPress post featured image URL How to get WordPress post featured image URL wordpress wordpress

How to get WordPress post featured image URL


Check the code below and let me know if it works for you.

<?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; ?>


If you want JUST the source, and not an array with other information:

<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'thumbnail' ); ?><img src="<?php echo $url ?>" />

 


// Try it inside loop.  <?php$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );echo $feat_image;?>