Sort post by last commented

时间:2014-01-07 作者:Mathieu

我试过这个:

<?php if ( have_posts() ) : query_posts(array(\'orderby_last_comment\' => true)); ?>
但它不起作用

1 个回复
SO网友:user43506

为此,您可以使用WP_Comment_Query.

查询将是

    $comments_query_args = array(
        \'post_type\' => \'post\',
        \'number\' => 5,
        \'status\' => \'approve\'
    );
    $comments_query = new WP_Comment_Query();
    $recent_comments = $comments_query->query($comments_query_args);

结束