在single.php文件中,通过产品ID以数组的形式获取产品图库链接。
在single.php文件中,通过产品ID以数组的形式获取产品图库链接。
我正在WordPress中从头设计模板,我在single.php中通过产品ID获取产品图片/图库遇到了问题;这是我的代码:\n
function GetImageUrlsByProductId( $productId){ $product = new WC_product($productId); $attachmentIds = $product->get_gallery_image_ids(); $imgUrls = array(); foreach( $attachmentIds as $attachmentId ) { $imgUrls[] = wp_get_attachment_url( $attachmentId ); } return $imgUrls; } $id = the_ID(); echo $id.""; $title = get_the_title(); echo $title.""; print_r(GetImageUrlsByProductId($id));
\n它显示为空数组,但我想要图片路径。