如何获取Woocommerce Product Gallery图片网址?

Jis*_*had 25 php mysql wordpress wordpress-plugin woocommerce

我正在开发一个wordpress woo商业购物网站并添加了一些产品.我想获得每个产品的产品图库图片网址.

屏幕截图的产品页面

我怎样才能获得图片的网址?

小智 53

试试这个:

<?php
    global $product;

    $attachment_ids = $product->get_gallery_attachment_ids();

    foreach( $attachment_ids as $attachment_id ) {
        echo $image_link = wp_get_attachment_url( $attachment_id );
    }
?>
Run Code Online (Sandbox Code Playgroud)

  • get_gallery_attachment_ids()现在是obsolet它是get_gallery_image_ids() (8认同)
  • 更新的解决方案:https://wordpress.stackexchange.com/questions/277465/getting-the-gallery-images-from-products-in-woocommerce/311359#311359 (2认同)