wordpress - 仅显示评论批评的评论

时间:2013-11-18 02:55:38

标签: php wordpress comments

我正在构建某种评论档案, 我在这看: http://codex.wordpress.org/Function_Reference/get_comments

并且看不到可以帮助我的“阵列”...

这是我的代码的一部分:

    function process_post(){ 
    Function sheker()  { 
    $args = array(
      what to put here ??????????????
    );

    // The Query
    $comments_query = new WP_Comment_Query;
    $comments = $comments_query->query( $args );



  // Comment Loop

任何想法?

1 个答案:

答案 0 :(得分:1)

使用以下代码,您可以获得所有已批准的评论(Check Parameters

$args = array('status'=>'approve');
$comments = new WP_Comment_Query( $args );
相关问题