我在我网站的主页上显示随机文章的所有评论。但我想在第一条评论中随机发表10篇帖子。
我正在使用此代码来显示评论;
<?php
global $withcomments;
$withcomments = true;
comments_template();
?>
答案 0 :(得分:0)
你可以使用get_comments($ args);获得评论的功能。像这样:
<?php
$args = array(
'order' => 'DESC',
'post_id' => 1,
);
get_comments( $args );
?>
以下是wordpress.org上的文档: