这行不通,因为我们不能包括comments.php
文件作为模板文件。我们的comments.php
文件不包含对数据库执行SQL操作和获取要显示的注释所需的代码。
因此,我们应该调用函数,而不是将该文件作为模板文件包含comments_template()
显示注释。
Wordpress使用comments_template()
函数获取文件并显示注释,如果我们不提供文件变量wordpress使用默认值comments.php
处理结果。
注意-
如果您对如何加载不同的注释模板感到好奇,那么下面是代码
<?php comments_template( \'/comments2.php\' ); ?>
参考-
Comments_template