2013-03-26 89 views
0

奇怪的問題 - 是否有可能合併兩個disqus小部件,以便它們彙總來自兩個源之間的註釋?合併/聚合disqus

所以說,如果你有兩個相同的文章,A和B,在兩個不同的網站上都有disqus。無論如何,當人X對文章A和人Y對文章B的評論發表評論時,A和B的disqus線程將包含來自X和Y的評論?

回答

0

當然,這是在這裏是一個「disqus_identifier」的基本用法:http://help.disqus.com/customer/portal/articles/472099

這裏的一個警告是在Disqus一個唯一的線程只能有一個鏈接到URL(這是我們用什麼發現,通知提醒等),因此您必須爲此選擇首選網站。

如果我們假設您有兩個網站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網站設置中設置信任(白名單)域,以確保兩個領域都包括在內。