После мучительных проб получил работающий код:
<?php
$the_query = new WP_Query('cat=2&showposts=-1');
while ($the_query->have_posts() ) : $the_query->the_post();
echo the_title();
the_post_thumbnail();
the_content();
endwhile;
wp_reset_postdata();
?>