我用它来为我的自定义主题获取 wordpress 评论:
get_comments( array('status' => 'aprove','order' => 'ASC', 'post_id' => $newpost->ID) );
除了等待审核的评论不会被过滤之外,一切正常。遵循法典:http 'status' => 'approve'
://codex.wordpress.org/Function_Reference/get_comment应该过滤掉那些,但这似乎没有发生。
我没有正确使用它吗?