Change default crop origin of a featured image in WordPress (thumbnail)

I would like to change the way WordPress crops the featured images thumbnail. The generated thumbnails are cropped from the center. Can I control that to set up to top left ?
This post mentions a plugin, but it doesen’t really exists :3
And the Scissors plugin seams not to affect featured image thumbnail.

Any idea ?

Related posts

Leave a Reply

3 comments

  1. In wp-includes/media.php, line 360, I found :

        $s_x = floor( ($orig_w - $crop_w) / 2 );
        $s_y = floor( ($orig_h - $crop_h) / 2 );
    

    …and changed to :

        $s_x = 0;
        $s_y = 0;
    

    … to define crop to top right.