从Woocommerce产品库中获取第一张图片的URL

时间:2018-10-25 20:48:20

标签: php wordpress woocommerce gallery src

如何获取上传到产品库的第一张图片的URL?

我不是在谈论特色图片。

任何建议,我将不胜感激。

1 个答案:

答案 0 :(得分:0)

以下内容将为您提供产品图片库中的第一个图片网址:

global $post, $product;

if( is_a($product, 'WC_Product'))
    $product = wc_get_product($post->ID);

    $product = wc_get_product(40);

// Get the array of the gallery attachement IDs
$attachment_ids = $product->get_gallery_image_ids();

if( sizeof($attachment_ids) > 0 ){
    $first_attachment_id = reset($attachment_ids);
    $link = wp_get_attachment_image_src( $first_attachment_id, 'full' )[0];

    // Output
    echo $link;
}
相关问题