In WordPress Media Settings the Thumbnail size we can crop thumbnail to exact dimensions.
But for the Medium size
no option to get exact dimensions. There have a way to force exact dimensions for medium size?
If yes, how to implement to the functions.php
If you want medium images to be cropped instead of scaled, like you can choose for the thumbnail size in the options page (but not for medium or large sizes), you can set the
medium_crop
option totrue
in yourfunctions.php
:As of now, there’s a better way to do it. You can overwrite the default image sizesânamely thumbnail, medium and largeâusing the
add_image_size
function.Examples:
Add this to your functions.php:
The arguments are size name, width, height, and whether to force a crop.