credits
Recent Blog Post';
echo '';
$number = 3; // number of recent posts that you want to display
$recent_posts = wp_get_recent_posts($number); // this function will display recent posts, order by ID DESC
foreach($recent_posts as $post){
echo '- '.$post["post_title"].'
';
}
echo '
';
?>