Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何向我的 WordPress 主题添加评论。我试过<?php comment_form(); ?>了,但它没有给出任何输出。我错过了什么吗?
<?php comment_form(); ?>
只需添加以下行
<?php comments_template(); ?>
在single.php您要添加/显示评论模板的地方。这将在模板中添加/包含该comments.php文件,single并确保该comments.php文件在您的主题文件夹中也可用。
single.php
comments.php
single
你也可以使用Disqus wordpress 插件,它是一个非常好的插件。
参考资料: Codex和教程。