How to get featured image of a product in woocommerce

前端 未结 8 1323
梦毁少年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:48

    I had the same problem and solved it by using the default woocommerce hook to display the product image.

    while ( $loop->have_posts() ) : $loop->the_post();
       echo woocommerce_get_product_thumbnail('woocommerce_full_size');
    endwhile;
    

    Available parameters:

    • woocommerce_thumbnail
    • woocommerce_full_size

提交回复
热议问题