Functions.php'ye eklenecek olan kod, 290, 200 yerleri kendinize göre düzenleyebilirsiniz.
Alıntı
add_image_size( 'ortaboyut', 290, 200, true );
Bu da resimin olduğu alanda kullanacağınız kod ( index.php, category.php, single.php vs gibi )
Alıntı
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail('ortaboyut', array ('class' => 'img-responsive') );
} else {
echo '<img class="img-responsive" src="' . get_bloginfo( 'template_url' ) . '/img/resimyok.png" />';
} ?>