нужно копать на эту тему ?
add_filter( 'woocommerce_single_product_image_thumbnail_html', 'add_class_to_thumbs', 10, 2 );
function add_class_to_thumbs( $html, $attachment_id ) {
if ( get_post_thumbnail_id() !== intval( $attachment_id ) ) {
$html = str_replace( '<a ', '<a class="thumb-class" ', $html );
}
return $html;
}