wordpress provide functionality to upload any size image then you can modify image size as per your requirement. and image display as per your need.
Add Below code in function.php
1 |
add_image_size('news_image',1350 , 300, true); |
Call New Size Image
1 |
the_post_thumbnail_url('news_image'); |