在我的 wordpress 页面学校中,我有两个不同的博客。假设博客A和博客B。在博客A或博客B上使用时,他可以发表评论。现在我想让两个博客的评论相互交流。ie 如果有人在博客A上发表评论,它应该显示如下:
- 在博客A上
- 在学校页面上
- 也在博客B上
因此,无论用户在哪里对上述三个页面发表评论,都将在所有三个页面上发表评论。
在我的 wordpress 页面学校中,我有两个不同的博客。假设博客A和博客B。在博客A或博客B上使用时,他可以发表评论。现在我想让两个博客的评论相互交流。ie 如果有人在博客A上发表评论,它应该显示如下:
因此,无论用户在哪里对上述三个页面发表评论,都将在所有三个页面上发表评论。
您可以使用WP_Comment_Query获取帖子的评论。一个粗略的例子:
<?php
$args = array(
'post_ID' => 1 //Add the postID of the post you need here
);
// The Query
$comments_query = new WP_Comment_Query;
$comments = $comments_query->query( $args );
// Comment Loop
if ( $comments ) {
foreach ( $comments as $comment ) {
// here you can display the comment in the way you want
echo 'Author: ' . $comment->comment_author . '<br/>';
echo '<p>' . $comment->comment_content . '</p>';
}
} else {
echo 'No comments found.';
}
?>
请看一下上面提到的文章。我不知道你想如何得到,post_ID
但这取决于你。如果您需要帮助,请告诉我。