Answers for "wordpress get featured image of current post"

3

get featured image post wordpress by post id

<?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 August-30-2020
0

wp+get feature image

<?php
	echo get_the_post_thumbnail( $post_id, 'thumbnail' );
?>
Posted by: Guest on November-28-2020

Code answers related to "wordpress get featured image of current post"

Code answers related to "Objective-C"

Browse Popular Code Answers by Language