奇怪的问题 - 是否可以合并两个disqus小部件,以便汇总两个来源之间的评论?
所以说如果你有两个相同的文章,A和B,在两个都有disqus的网站上。无论如何,当人X评论文章A和人Y评论文章B时,A和B的disqus线程将包括来自X和Y的评论?
答案 0 :(得分:1)
当然,这是'disqus_identifier'的基本用法,在此处记录:http://help.disqus.com/customer/portal/articles/472099
这里要注意的是,Disqus上的一个独特线程只能有一个链接到URL(这是我们用于发现,通知警报等),所以你必须为此选择首选网站。 / p>
如果我们假设您在http://mycoolwebsite.com/和http://example.com/有两个网站,并且“mycoolwebsite.com”是首选的链接网站,则您将在两个网站上使用相同的嵌入代码。这是一个例子:
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: THIS CODE IS ONLY AN EXAMPLE * * */
var disqus_shortname = 'example'; // Make sure you use the same shortname on both sites
var disqus_identifier = 'some_unique_identifier_for_your_discussion';
var disqus_title = 'The Title of the article';
var disqus_url = 'http://mycoolwebsite.com/2013/a-cool-article/'; // Make sure this is the same, even on example.com
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
另一个警告是确保如果您在Disqus网站设置中设置了受信任(列入白名单)的域,以确保包含这两个域。