get_gallery_image_ids(); $astra_addon_image_props = wc_get_product_attachment_props( get_post_thumbnail_id(), $post ); echo sprintf( '', get_the_post_thumbnail( $post->ID, 'shop_single', array( 'title' => $astra_addon_image_props['title'], 'alt' => $astra_addon_image_props['alt'], ) ) ); if ( $astra_addon_image_attachment_ids ) { $astra_addon_image_loop = 0; foreach ( $astra_addon_image_attachment_ids as $astra_addon_attachment_id ) { $astra_addon_image_props = wc_get_product_attachment_props( $astra_addon_attachment_id, $post ); if ( ! $astra_addon_image_props['url'] ) { continue; } echo sprintf( '
  • %s
  • ', wp_get_attachment_image( $astra_addon_attachment_id, 'shop_single', 0, $astra_addon_image_props ) ); $astra_addon_image_loop++; } } } else { echo sprintf( '
  • %s
  • ', esc_url_raw( wc_placeholder_img_src() ), esc_html__( 'Placeholder', 'astra-addon' ) ); } ?>