'post', // Define post type to be 'post' for blog posts
'posts_per_page' => 6, // Number of posts to display
);
$the_query = new WP_Query($args);
if ($the_query->have_posts()) :
while ($the_query->have_posts()) : $the_query->the_post();
?>