How to limit displayed posts on wordpress

You just have to check/count how many posts you alreay handled.

$num_post = 1;
while ( have_posts() && ($num_post++ < 3) ) : ...