How to get featured image of a product in woocommerce

前端 未结 8 1324
梦毁少年i
梦毁少年i 2021-02-05 00:26

Please tell me where I am going wrong . Product featured image is not showing up.

   $args = array( \'post_type\' => \'product\', \'posts_per_page\' => 80,         


        
8条回答
  •  萌比男神i
    2021-02-05 00:50

    In WC 3.0+ versions the image can get by below code.

    $image_url = wp_get_attachment_image_src( get_post_thumbnail_id( $item->get_product_id() ), 'single-post-thumbnail' );
    echo $image_url[0]
    

提交回复
热议问题