安全删除:当使用第三方评论应用程序时:<?PHP Comments_Template();?>

时间:2017-08-16 作者:Henry

我在WordPress上发表评论时使用了Disqus。

我认为我可以删除这一行是正确的,还是完全错了?我指的是:

<?php comments_template(); ?>
我可能错了,否则评论怎么知道在哪里加载才对呢?

1 个回复
最合适的回答,由SO网友:mayersdesign 整理而成

从Disqs插件核心:

// Only replace comments if the disqus_forum_url option is set.
add_filter(\'comments_template\', \'dsq_comments_template\');
这当然意味着Discus使用<?php comments_template(); ?> include包含它自己的文件,因此我建议将其保留在原来的位置:)

结束