如何在get\\u comments()或WP\\u Comment\\u查询中仅获取第一级注释?我想查询“comment\\u parent”=>0的注释,并排除所有子注释。
$args = array(
\'number\' => 10,
\'order\' => \'DESC\',
\'status\' => \'approve\',
\'meta_key\' => \'comment_parent\',
\'meta_value\' => 0
);
$comments = get_comments( $args );
最合适的回答,由SO网友:Krzysiek Dróżdż 整理而成
我想这应该可以做到:
$args = array(
\'number\' => 10,
\'order\' => \'DESC\',
\'status\' => \'approve\',
\'parent\' => 0
);
$comments = get_comments( $args );
您可以在中找到完整的参数列表
Codex.