how can get latest 3 post wordpress
<?php
$lastestposts = get_posts('numberposts=3');
foreach($lastestposts as $post) :
setup_postdata($post);
?>
<h2><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h2>
<?php echo the_content(); ?>
<?php endforeach; ?>
<?php
$lastestposts = get_posts('numberposts=3');
foreach($lastestposts as $post) :
setup_postdata($post);
?>
<h2><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h2>
<?php echo the_content(); ?>
<?php endforeach; ?>