get_image_id(); // Get gallery images. if ( version_compare( OceanWP_WooCommerce_Config::get_wc_version(), '2.7', '>=' ) ) { $attachment_ids = $product->get_gallery_image_ids(); } else { $attachment_ids = $product->get_gallery_attachment_ids(); } // Get attachments count. $attachments_count = count( $attachment_ids ); // Image args. $img_args = array( 'alt' => get_the_title(), ); if ( oceanwp_get_schema_markup( 'image' ) ) { $img_args['itemprop'] = 'image'; } // If there are attachments display slider. if ( $attachment_ids ) : ?>