php 获取产品变体值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 获取产品变体值相关的知识,希望对你有一定的参考价值。



https://stackoverflow.com/questions/47308732/get-url-of-variation-image-thumbnails-in-woocommerce

<?php
// find out $variation_id, it's different from product_id
$variation = new WC_Product_Variation( $variation_id );
$image_tag = $variation->get_image();

// The below is the whole image tag including <img> and some classes that will help customize it.
echo $image_tag;

以上是关于php 获取产品变体值的主要内容,如果未能解决你的问题,请参考以下文章