0

在我的 wordpress 页面学校中,我有两个不同的博客。假设博客A和博客B。在博客A或博客B上使用时,他可以发表评论。现在我想让两个博客的评论相互交流。ie 如果有人在博客A上发表评论,它应该显示如下:

  1. 在博客A
  2. 学校页面上
  3. 也在博客B上

评论演示 因此,无论用户在哪里对上述三个页面发表评论,都将在所有三个页面上发表评论。

4

2 回答 2

0

您可以使用rss 提要获取评论并将其加载到页面中。如果它是一个多站点,你可以看看这里。如果站点是分开的但在同一台服务器上,您可以连接到那里的数据库并查询您需要的评论。

您至少需要自己编写一些代码。

于 2013-10-09T06:59:50.370 回答
0

您可以使用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但这取决于你。如果您需要帮助,请告诉我。

于 2013-10-09T18:42:32.687 回答