How to get WordPress post featured image URL

前端 未结 20 1901
闹比i
闹比i 2020-12-02 04:59

I am using this function to get the featured images:


    


        
相关标签:
20条回答
  • 2020-12-02 05:35

    You will try this

    <?php $url = wp_get_attachment_url(get_post_thumbnail_id($post->ID), 'full'); ?> // Here you can manage your image size like medium, thumbnail, or custom size
        <img src="<?php echo $url ?>" 
    />
    
    0 讨论(0)
  • 2020-12-02 05:36

    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; ?>
    
    0 讨论(0)
提交回复
热议问题