if ( function_exists( 'add_image_size' ) ) { add_image_size( 'category-thumb', 220, 180, true ); //(cropped) }Then to output the desired custom size put this code wherever you will want the image to show..
<?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'category-thumb' ); } ?>