ID;
// Get the post title
$post_title = get_the_title($post);
// Get the post excerpt
$post_excerpt = get_the_excerpt($post);
// Get the post thumbnail
$post_thumbnail = get_the_post_thumbnail($post, 'thumbnail');
// Output the data in HTML
echo '
';
echo '
' . $post_title . '
';
echo '
' . $post_excerpt . '
';
echo $post_thumbnail;
echo '