I have to get the latest comment of a post. I mean, the most recent comment. The Following Code I Tried. But it returns nothing. Its empty.
$args = array(
'number' => '1',
'post_id' => $post->ID
);
$comments = get_comments($args);
echo $comments->comment_content;
But the post has more than 3 comments.
Try this :
Try this code: