How to get WordPress post featured image URL

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

I am using this function to get the featured images:


    
         


        
20条回答
  •  囚心锁ツ
    2020-12-02 05:34

    You can also get the URL for image attachments as follows. It works fine.

    if (has_post_thumbnail()) {
        $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'medium'); 
    }
    

提交回复
热议问题