Helo,我想显示所有评论,但没有家长评论。 也许是这样的:
> - Parent
> --- Child 1,
> --- Child 2,
> ----- Child 3
> ----- Child 4
> -------- Child 5
我只想得到:孩子1,孩子2,......孩子N
尝试使用下面的代码,但只显示父母评论,但不包含Childs。
$comments = get_comments( array(
'status' => 'approve',
'user_id' => $author->ID,
'post_type' => 'post',
'parent' => 0
) );
如果使用此代码。,则显示所有评论包括孩子和父母。
$comments = get_comments( array(
'status' => 'approve',
'user_id' => $author->ID,
'post_type' => 'post',
) );
请帮助,谢谢。