get_comments()
将为您获取评论,无论是来自整个博客还是特定帖子。其参数记录在WP_Comment_Query::__construct()
.
除非你安装了一个插件pending
作为评论状态,您可能正在查找以下内容:
$args = array(
// Limits comments to a specific post.
// Leave this off if you want all comments, blog-wide.
\'post_id\' => $post_id,
// Get only non-approved (ie, pending) comments.
\'status\' => \'hold\',
// Will only fetch comment IDs.
// If you want full comment objects, leave this off.
\'fields\' => \'ids\',
);
$comments = get_comments( $args );
如果您安装了一个插件
pending
作为状态,您可以尝试使用
\'status\' => \'pending\'
而不是
\'status\' => \'hold\'
, 自
status
参数将允许自定义状态。