我正在使用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
}
?>
虽然
答案 0 :(得分:1)
您需要替换
$post_comments = get_comments();
带
$post_comments = get_comments( array( 'post_id' => $post->ID))