Answers for "get_the_post_thumbnail_url(); ?>"

PHP
2

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; ?>
Posted by: Guest on May-10-2021

Code answers related to "get_the_post_thumbnail_url(); ?>"

Browse Popular Code Answers by Language