How to create thumbnails with a fixed width, so all of them will have the same width?

Use add_image_size() in your functions.php:

add_image_size( 'post-icon', 150);

…and then use this in your template:

<?php the_post_thumbnail('post-icon'); ?>

Leave a Comment