register your custom size in functions.php
add_image_size(‘my_feature_image’, 450, 250, true);
and call it in yout theme
<?php the_post_thumbnail(‘my_feature_image’); ?>
register your custom size in functions.php
add_image_size(‘my_feature_image’, 450, 250, true);
and call it in yout theme
<?php the_post_thumbnail(‘my_feature_image’); ?>