有没有办法通过ID获得评论的回复?我在谷歌上搜索过,但没有找到任何关于它的信息。
例如,我有一条ID为123的注释
我想显示评论ID 123的所有回复。
我尝试了以下方法,但没有成功:
$args = array(
\'status\' => \'approve\',
\'ID\' => 123,
\'number\' => \'5\',
\'post_id\' => 73871,
\'comment_parent\' => 0
);
$comments = get_comments($args);