Profile image for Andy C364 AndyC364
crop thumbnails from top centre instead of the default middle centre.

wp-includes/media.php
Language
PHP
Tags
centre crop thumbnails wordpress

Thumbnail Cropping from top instead of centre

1 replace: 2 $s_x = floor( ($orig_w - $crop_w) / 2 ); 3 $s_y = floor( ($orig_h - $crop_h) / 2 ); 4 5 with: 6 $s_x = floor( ($orig_w - $crop_w) / 2 ); 7 $s_y = 0;

Comments