根据您的来源,您希望将此javascript代码添加到任何启用了disqs注释的页面或帖子的页脚。因为Discus评论系统会替换你评论框的所有实例,你只需检查当前帖子上是否启用了评论,然后把它扔进去即可。
尝试将其添加到函数中。活动主题目录中的php文件:
function track_disqus_comments() {
$post = get_queried_object();
if (isset($post) && $post->comment_status == "open") : ?>
<script type="text/javascript">
function disqus_config() { this.callbacks.onNewComment = [function(comment) { _gaq.push([\'_trackEvent\', \'Disqus\', \'New Comment\', comment.id]); }]; }
</script>
<?php
} add_action(\'wp_footer\', \'track_disqus_comments\');
请记住,需要已经定义\\u gaq对象。希望你的google analytics插件能帮你解决这个问题,你就不用担心了。