muban大师 发表于 2021-8-14 08:55:37

修改织梦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'))
        在代码括号中的数字就是字符数,修改成自己想要的字符数就可以了。
页: [1]
查看完整版本: 修改织梦dede文章内容页中标题、来源、作者等字符长度