Crop images in both sides on wordpress [duplicate]

HELLO,

You can use below functions for cropping Or resizing your images.

add_image_size(‘news-thumbnail’, 500,
200, true);

AND

the_post_thumbnail(‘news-thumbnail’);

you can also refer this Link.

Thanks.