DedeCMS(织梦内容管理系统)是一款基于PHP+MySQL开发的开源网站管理系统。它提供了丰富的功能,包括文章管理、会员管理、模板管理等。评论功能是DedeCMS中的一个重要模块,允许用户对文章进行评论和互动。
原因:
优势:
类型:
应用场景:
问题:关闭评论后,仍然显示评论框
原因: 可能是模板文件中仍然包含评论框的代码。
解决方法:
示例代码:
<!-- 删除或注释掉以下代码 -->
{dede:php}
if($allowcomment==1)
{
include_once(DEDEINC.'/comment.class.php');
$com = new DedeComment();
$com->SetParameter('aid',$arcID);
$com->SetParameter('typeid',$typeid);
$com->SetParameter('col',$col);
$com->SetParameter('row',$row);
$com->SetParameter('line',$line);
$com->SetParameter('infor',$infor);
$com->Display();
}
{/dede:php}
通过以上步骤,您可以成功关闭DedeCMS的评论功能,并解决可能遇到的问题。
领取专属 10元无门槛券
手把手带您无忧上云