如何在wooccommerce rest api中获取产品库图像


How to get the product gallery images in woocommerce rest api?

我想知道如何从Wooccommerce REST API获取我们添加到Wooccommence产品中的产品库图像。

我已经看过文件:

http://woothemes.github.io/woocommerce-rest-api-docs/#view-a产品

但这并不能解释我在哪里可以买到这些。

如果没有办法得到这些,有没有办法扩展REST API。如果是,那么怎么做?

在链接中,在"产品属性"下显示:

images阵列产品图像列表。请参阅图像属性

这听起来像是你需要的。

这个小片段对我帮助很大:

$image_ids = $product->get_gallery_image_ids();
array_push($image_ids, $product->get_image_id() );
            
foreach($image_ids as $image_id){
 $image_url = wp_get_attachment_url($image_id);
 // Do something with the image URL
}

$product是WC_Product