我创建了一个自定义wordpress页面,您可以通过在网址中输入ID来访问不同的匹配
http://www.url.com/match/?id=2314
我希望评论与给定的ID相关,以便每个匹配都有不同的评论?
答案 0 :(得分:0)
每次选择新网址时,都可以使用Disqus API重置评论:
在AJAX网站上使用Disqus
可以在AJAX应用程序中重新加载Disqus线程 以下代码:
DISQUS.reset({
reload: true,
config: function () {
this.page.identifier = "newidentifier";
this.page.url = "http://example.com/#!newthread";
}
});
请参阅Github上的DISQUS API食谱回购example DISQUS.reset recipe。