自托管 Wordpress 网站上未显示 Disqus 评论表

问题描述:

我已按照有关在我的网站上安装 Disqus 评论系统的所有说明进行操作,但旧的评论表仍然可见.

I have followed all instructions on installing Disqus commenting system on my website but the old comment form is still visible.

我的问题是:是 足以显示评论,或者在 single.php 页面上需要有其他内容.

My question is: is <?php comment_form(); ?> enough to display the comments or there needs to be something else on the single.php page.

我还应该注意什么?

我没有安装任何其他评论引擎.

I don't have any other commenting engine installed.

谢谢

好的,我找到了.而不是使用 <?php comment_form();?> 我不得不使用 <?php comments_template();?>.成功了

OK I found it. Instead of using the <?php comment_form(); ?> I had to use <?php comments_template(); ?>. That did the trick