我可以使用get_comments
获取wordpress评论列表。
例如:
$comments = get_comments('status=approve&number=10');
它也会返回引用。是否有可能只获得人类评论(没有引用等)?感谢。
答案 0 :(得分:1)
我相信:
$comments = get_comments('status=approve&number=10&type=comment');
查看documentation reference,但在get_comments()
的情况下,它并不是特别有帮助。
另外,我发现另一种可能的语法是上面的语法等同于:
$args = array(
'status' => 'approve',
'number' => 10,
'type' => 'comment',
);
$comments = get_comments( $args );
$args
数组定义了获取注释时所需的约束。