得到wordpress评论没有引用?

时间:2011-10-09 17:50:09

标签: php wordpress

我可以使用get_comments获取wordpress评论列表。 例如:

$comments = get_comments('status=approve&number=10');

它也会返回引用。是否有可能只获得人类评论(没有引用等)?感谢。

1 个答案:

答案 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数组定义了获取注释时所需的约束。