get_image_id(); $attachment_ids = $product->get_gallery_image_ids(); $is_not_sticky_thumbs = 'sticky-thumbs' != alpha_get_single_product_layout(); echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', alpha_wc_get_gallery_image_html( $post_attachment_id, false, true, $is_not_sticky_thumbs ), $post_attachment_id ); // phpcs:disable WordPress.XSS.EscapeOutput.OutputNotEscaped if ( $attachment_ids && $post_attachment_id ) { foreach ( $attachment_ids as $attachment_id ) { echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', alpha_wc_get_gallery_image_html( $attachment_id, false, false, $is_not_sticky_thumbs ), $attachment_id ); // phpcs:disable WordPress.XSS.EscapeOutput.OutputNotEscaped } }