esc_attr( get_the_title( get_post_thumbnail_id() ) ),
);
if ( has_post_thumbnail() ) {
echo '
' . get_the_post_thumbnail( $post->ID, apply_filters( 'single_product_large_thumbnail_size', 'woocommerce_single' ), $attributes ) . '';
if ( $attachment_count > 0 ) {
foreach ( $attachment_ids as $attachment_id ) {
echo '
' . wp_get_attachment_image( $attachment_id, apply_filters( 'single_product_large_thumbnail_size', 'woocommerce_single' ), false, array( 'class' => apply_filters( 'woodmart_single_product_gallery_image_class', 'wp-post-image' ) ) ) . '
';
}
}
} else {
echo '
' . apply_filters( 'woocommerce_single_product_image_html', sprintf( '
', wc_placeholder_img_src(), __( 'Placeholder', 'woodmart' ) ), $post->ID ) . '';
}
?>