'post',
'numberposts' => 4, // Number of recent posts thumbnails to display
'post_status' => 'publish' // Show only the published posts
));
foreach ($recent_posts as $key => $post) {
$post_thumbnail = get_the_post_thumbnail($post['ID'], 'full', array('class' => 'card-post__thumbnail'));
$post_tags = get_the_tags($post['ID']);
get_template_part(
'template-components/card-post',
null,
array(
'card_variant' => 'activite',
'post_ID' => $post['ID'],
'post_title' => $post['post_title'],
'post_thumbnail' => $post_thumbnail,
'post_tags' => $post_tags,
)
);
}
?>