gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 17:44:04 27 4
gpt4 key购买 nike

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

我不是在谈论特色图片。

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

最佳答案

以下将为您提供产品库中的第一个图片 Url:

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;
}

关于php - 从 Woocommerce 的产品库中获取第一张图片的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52997885/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com