如何在WooCommerce中获取产品的特色图像

13 浏览
0 Comments

如何在WooCommerce中获取产品的特色图像

请告诉我我哪里做错了。产品特色图片没有显示出来。

   $args = array( 'post_type' => 'product', 'posts_per_page' => 80, 'product_cat' => 'profiler', 'orderby' => 'rand' );
    $loop = new WP_Query( $args );
   while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
    " data-profile="">
    

 

 

我已经在后台添加了特色图片。

admin 更改状态以发布 2023年5月23日
0
0 Comments

这里的答案太复杂了。这是我最近使用的:



使用wp_get_attachment_url()来显示

0
0 Comments

我找到了解决方案。
我尝试了这个。


    

0