Is there any way to generate thumbnails of the same dimensions, but with a different crop?
I want to do something like:
add_image_size( 'thumbnail_top', 360 , 180 , array ('center', 'top') );
add_image_size( 'thumbnail_middle', 360 , 180 , array ('center', 'center') );
add_image_size( 'thumbnail_bottom', 360 , 180 , array ('center', 'bottom') );
but there is nothing in the filename to define the crop, so the thumbnail file always gets overwritten with the last in the list of the same size, therefore in this example, 'thumbnail_top'
will always display as 'thumbnail_bottom'
.