<?php
$args = array(
    'posts_per_page' => 3,
    'post_status' => 'publish'
);
$recent_posts = new WP_Query($args);
if ($recent_posts->have_posts()) :
    while ($recent_posts->have_posts()) : $recent_posts->the_post(); ?>
        <div class="recent-post">
            <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
            <p><?php the_excerpt(); ?></p>
        </div>
    <?php endwhile;
    wp_reset_postdata();
else :
    echo '<p>投稿が見つかりませんでした。</p>';
endif;
?>