<?php $the_query = new WP_Query( ); ?>
// Start our WP Query
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
// Display the Post Title with Hyperlink
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
// Display the Post Excerpt
<?php the_excerpt(__('(more…)')); ?>
// Repeat the process and reset once it hits the limit
<?php endwhile; wp_reset_postdata();
?>