Imprime um thumbnail no tema e coloca uma classe específica no elemento . Ex.: "img-responsive" ou "alignleft"
// se for um post
echo get_the_post_thumbnail( $post_id, 'thumbnail', array( 'class' => 'alignleft' ) );
//Se for uma página
echo get_the_post_thumbnail( $page->ID, 'full', array( 'class' => 'img-responsive' ) );