如何查看wordpress帖子的第一条评论?

时间:2017-07-10 20:56:20

标签: wordpress comments

我在我网站的主页上显示随机文章的所有评论。但我想在第一条评论中随机发表10篇帖子。

我正在使用此代码来显示评论;

<?php 
global $withcomments;
$withcomments = true;
comments_template();
?>

1 个答案:

答案 0 :(得分:0)

你可以使用get_comments($ args);获得评论的功能。像这样:

<?php 
    $args = array(
        'order' => 'DESC',
        'post_id' => 1,
    );
    get_comments( $args );
?>

以下是wordpress.org上的文档:

https://codex.wordpress.org/Function_Reference/get_comments