WooCommerce在使用get_image()时显示占位符图像

我正在开发一个自定义的WooCommerce主题, 每次尝试检索产品的图像时, 我得到的只是占位符图像。我已经在后端设置了图像, 因此它应该可以正常工作, 但事实并非如此。
这是我的代码:

$args = array( 'post_type' => 'product', 'posts_per_page' => 2 ); $products = get_posts($args); foreach($products as $the_product) { $wc_product = new WC_Product($the_product-> id); echo $wc_product-> get_image('shop_thumbnail'); }

结果如下:
WooCommerce在使用get_image()时显示占位符图像

文章图片
你能帮我这个忙吗?
#1 【WooCommerce在使用get_image()时显示占位符图像】我实际上找到了问题的答案, 在访问WC_Product对象的属性时, 我使用” id” 而不是” ID” 。

    推荐阅读