Is there a way to get replies of a comment by its ID? I have searched on google but could not find anything about it.
For example, I have a comment with ID 123
I want to display all the replies that comment ID 123 has.
I have tried something like the following but it did not work:
$args = array(
'status' => 'approve',
'ID' => 123,
'number' => '5',
'post_id' => 73871,
'comment_parent' => 0
);
$comments = get_comments($args);