当前位置: 代码迷 >> 综合 >> Wordpress 去掉评论框下方的 You may use these HTML tags and attributes
  详细解决方案

Wordpress 去掉评论框下方的 You may use these HTML tags and attributes

热度:74   发布时间:2023-12-17 07:55:14.0

Wordpress 新建的网站,如果换了原来默认的主题,并且开启了评论,则评论下面会出现这么一段代码。
image_1d61u7jaj8r3105d18gh1cp2s9i9.png-9.4kB
通过Google,在国外的论坛上找到了解决方案
image_1d61u7up3jis3qe1v8i1t2ug3hm.png-28.3kB
打开你域名文件夹下面wp-content/themes/anima路径下的comments.php文件。
image_1d61u9n3mn13dti1cuk14mnmi91g.png-38.7kB
编辑comments.php文件,然后找到
<?php comment_form(); ?>这行代码
修改为<?php comment_form(array('comment_notes_after' => '')); ?>
image_1d61u91j5kel1qcb1e5amtqu5p13.png-10.6kB
改好后,评论下方就没有那几行代码了。

  相关解决方案