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

时间:2015-02-09 12:38:20

标签: php wordpress woocommerce

我想知道如何获取我们在Woocommerce REST API的woocommerce产品中添加的产品库图片。

我已经阅读了文档:

  

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

但是没有解释我在哪里可以获得这些。

如果无法获得这些,是否有办法扩展REST API。如果是,那怎么办?

2 个答案:

答案 0 :(得分:0)

在链接中,在“产品属性”下,似乎是:

  

images数组产品图片列表。请参见图像属性

这听起来像你需要的。

答案 1 :(得分:0)

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

$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