我有两个问题:
如果您有任何想法,请帮助我。
答案 0 :(得分:0)
试试这个 -
<?php $args = array(
'order' => 'DESC',
'parent' => '0',
'number' => '',
'post_id' => get_the_ID(),
'status' => 'approve', //hold, approve, all
'count' => true
);
$total_number_of_comments = get_comments( $args );
echo $total_number_of_comments;
?>
<?php $args = array(
'order' => 'DESC',
'parent' => '0',
'number' => '3',
'post_id' => get_the_ID(),
'status' => 'approve', //hold, approve, all
'count' => false
);
$last_three_comments = get_comments( $args );
print_r($last_three_comments);
?>