1、首先要去复制多说通用代码过来。
<!-- 多说评论框 start --> <div class="ds-thread" data-thread-key="请将此处替换成文章在你的站点中的ID" data-title="请替换成文章的标题" data-url="请替换成文章的网址"></div> <!-- 多说评论框 end --> <!-- 多说公共JS代码 start (一个网页只需插入一次) --> <script type="text/javascript"> var duoshuoQuery = { short_name: "你的名称" }; (function () { var ds = document.createElement('script'); ds.type = 'text/javascript'; ds.async = true; ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js'; ds.charset = 'UTF-8'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ds); })(); </script> <!-- 多说公共JS代码 end -->
2、替换通用代码中的参数。
需要替换的参数包括“文章ID、文章标题、文章URL、你的站点在多说填写的二级域名”。
替换后结果如下:
<div class="ds-thread" data-thread-key="< ?php the_ID();?>" data-title="< ?php the_title(); ?>" data-url="< ?php the_permalink();?>">
WordPress中获取文章标题的代码是“< ?php the_title(); ?>” WordPress中获取文章ID的代码是“< ?php the_ID();?>” WordPress中获取文章URL的代码是“< ?php the_permalink();?>”
var duoshuoQuery = {short_name:"你的名称"};
重点说明一下,这里的“你的名称”需要去多说的后台看一下。[多说后台—设置—域名第一行xxx.duoshuo.com]中的xxx填到这里即可。
3、粘贴替换好的代码到指定位置。
common.php 或者single.php 替换对应代码。