I have an animated gif I want to show in two places, having two different sizes.
I am creating two sizes in my functions.php, using
add_image_size( 'small-feature', 500, 300 );
add_image_size( 'gallery-thumb', 120, 9999 );
If the uploaded file is 500 x 300 px, it will keep the animation, as it no resizing happens. If the image is to be resized, the animation is lost.
Is there a way I can resize these images and still keep the animation in the original .gif file?