1、改数据库里相关字段 2、DEDE后台,系统工具---SQL命令行工具---运行SQL命令行 alter table 58pic_arctype change column description description text; alter table 58pic_arctype change column keywords keywords text; 这样几个解决栏目的关键词和描述字 […]
1、改数据库里相关字段
2、DEDE后台,系统工具---SQL命令行工具---运行SQL命令行
alter table 58pic_arctype change column description description text;
alter table 58pic_arctype change column keywords keywords text;
这样几个解决栏目的关键词和描述字数的限制,你要多少字数就多少
3、改变文章内容的关键词和描述字数:
DEDE后台,系统工具---SQL命令行工具---运行SQL命令行:
alter table 58pic_archives change column description description text;
alter table 58pic_archives change column keywords keywords text;
接下来修改dede 文件下的 article_add.php 和 article_edit.php
$description = cn_substrR($description,500);——后面数字的就是你想要字符数
$keywords = cn_substrR($description,120);——后面数字的就是你想要字符数