Answers for "echo featured image wordpress"

PHP
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
1

wordpress featured image show

<?php echo the_post_thumbnail(); ?>
Posted by: Guest on July-09-2020

Code answers related to "echo featured image wordpress"

Browse Popular Code Answers by Language