我正在使用 Wordpress,在我的单个帖子页面上,我不想显示对此特定帖子的所有评论,但我会获得对我博客上所有帖子的所有评论。$post_id 不应该默认为有问题的帖子吗?我有这个代码:
$comments = get_comments();
foreach($comments as $comment) :
if ($comment->comment_approved == 1) {
echo '<hr /><h5>' . $comment->comment_author . '
</h5><p class="visitorAuthor">' . $comment->comment_date . '</p>
<p>' . $comment->comment_content . '</p>';
if ($comment->comment_author_url != '') { echo '<p><a href="' . $comment->comment_author_url . '" Target="_blank">Besök min hemsida</a>' ; }
}
endforeach;