Solucionado! con paginación funcionando:
Código:
<?php $i=1; while (have_posts()) : the_post();
if($i<=2){
the_content();
}
else{
the_title();
};
$i++;?>
<?php endwhile; ?>
Si cuanto lo separen para meter el HTML no funciona colocar el $i++; antes del if.
Gracias j_aroche.