I need to make a RecentPost Carousel in Wordpress with PHP and BxSlider, but I can't get it to show the thumbnail.
I have the recent post with the next code:
<?php
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> ';
}
wp_reset_query();
?>
This code shows the last post and is perfectly working, but how can I get the featured image or thumbnail or image from the media library?