修改织梦dede文章内容页中标题、来源、作者等字符长度
在织梦网站程序中对不同的字段都有***长度的限制,对文章内容页中的字段也是如此,想要在文章内容页中标题、来源、作者等字段字数不受到限制,还要在程序文件中做一些修改。
找到dede目录下的以下文件:
/archives_add.php
/archives_edit.php
/article_add.php
/article_edit.php
如果修改专题摘要,还得修改:
/spec_add.php
/spec_edit.php
依次打开查找以下代码:
$title=cn_substrR($title,$cfg_title_maxlen);
$shorttitle=cn_substrR($shorttitle,36);//简略标题字符数
$color=cn_substrR($color,7);
$writer=cn_substrR($writer,20);//作者字符数
$source=cn_substrR($source,30);//文章来源字符数
$description=cn_substrR($description,600);//摘要字符数
$keywords=trim(cn_substrR($keywords,30));//关键词字符数
$filename=trim(cn_substrR($filename,40));//文件名字符数
if(!TestPurview('a_Check,a_AccCheck,a_MyCheck'))
在代码括号中的数字就是字符数,修改成自己想要的字符数就可以了。
时间:(2024-02-06 14:13:22)
本站资源均来自互联网或会员发布,如果不小心侵犯了您的权益请与我们联系。我们将立即删除!谢谢!