‘post’,
‘posts_per_page’ => 3,
);

$query = new WP_Query($args);
if ($query->have_posts()) :
echo ‘

‘;
while ($query->have_posts()) : $query->the_post();
echo ‘

‘;
if (has_post_thumbnail()) {
echo ‘

‘ . get_the_post_thumbnail(get_the_ID(), ‘medium’, [‘style’ => ‘width:100%; height:auto; border-radius:4px;’]) . ‘

‘;
}
echo ‘

‘ . get_the_title() . ‘

‘;
echo ‘

‘ . get_the_excerpt() . ‘

‘;
echo ‘Leia mais‘;
echo ‘

‘;
endwhile;
echo ‘

‘;
wp_reset_postdata();
else :
echo ‘

Não há artigos recentes no momento.

‘;
endif;
?>