获取特定注释家长的注释。。。
(如果你不是被迫这样做的get_comments()
)
您可以将注释数组传递给wp_list_comments()
作为第二个参数。不过,它只适用于“平坦”输出。
$comments_parent_ids= [40, 48];
$comments= [];
foreach ($comments_parent_ids as $id) {
$comments= array_merge(
$comments,
get_comment($id)->get_children([\'hierarchical\'=>\'flat\'])
);
}
wp_list_comments(
[],
$comments
);