How to crop thumbnail height to auto with set width

In your theme’s functions.php file:

/* register new image size
 * 200px wide and unlimited height
 */
add_image_size( 'wpse73058', 200, 9999, false );

In a template or the like:

if ( has_post_thumbnail() ) { the_post_thumbnail( 'wpse73058' ); }

Leave a Comment