以编程方式添加/设置产品图像和图库图像
我正在从 json 文件获取数据并尝试为产品设置图像,我的目标是 - 需要开发一种从 JSON 响应中提取/下载图像并将图像设置到相关产品的方法 //$product_data 正在获取 Json 的响应
$product_data = $_REQUEST['data'];
$product = new WC_Product_Simple();
$product->set_name( $product_data['Title'] ); // it's working
$product->set_status( 'publish' );
$product->save();
如果它有多个图像需要分配给一个产品,则第一个图像需要分配为特色图像/缩略图,然后将其余图像分配为产品图库缩略图。
I'm getting data from jSON file and trying to setup the images for a product, My goal is -
need to develop a way to extract/download images from JSON responses and set images to related product
//$product_data is getting the response from Json
$product_data = $_REQUEST['data'];
$product = new WC_Product_Simple();
$product->set_name( $product_data['Title'] ); // it's working
$product->set_status( 'publish' );
$product->save();
If it has multiple images that need to be assigned to a product, the first image need to assign as the featured image/thumbnail, and then assign the rest of the images as the product gallery thumbnails.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)