我想知道如何获取我们在Woocommerce REST API的woocommerce产品中添加的产品库图片。
我已经阅读了文档:
http://woothemes.github.io/woocommerce-rest-api-docs/#view-a-product
但是没有解释我在哪里可以获得这些。
如果无法获得这些,是否有办法扩展REST API。如果是,那怎么办?
答案 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