ワードプレスを使ってget_comments()
いますが、うまくいきません。各投稿の下部に、同じコメントが表示されます。get_comments に ID 属性があることは知っていますが、動的に割り当てるにはどうすればよいですか? 私は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
}
?>
いる間