我正在使用 wordpress get_comments()
,但它出现故障。在每个帖子的底部,我看到相同的评论。我知道 get_comments 有一个 ID attr,但我应该如何动态分配它?我在 single.php 中使用注释并使用comment_template()
;
提前致谢
编辑
comment_form($comments_args);
$post_comments = get_comments();
?>
<?php
if ( $post_comments )
{
?>
<section class='post-comments'>
<?php
foreach($post_comments as $comment_each)
{
$comment_each->comment_content;
}
?>
</section>
<?php
}
else
{
?>
<div class='no-comment'>
<?php
_e('No comments to show.');
?>
</div>
<?php
}
?>
虽然是