演示链接:查看演示

DEDECMS改变栏目的关键词和描述字数

1.改变栏目的关键词和描述字数: 

在系统工具—SQL命令行工具—运行SQL命令行:

                     alter table dede_arctype change column description description text;

                     alter table dede_arctype change column keywords keywords text;

这样几个解决栏目的关键词和描述字数的限制,你要多少字数就多少

 

 

2.改变文章内容的关键词和描述字数:

同样在,系统工具—SQL命令行工具—运行SQL命令行:

                     alter table dede_archives change column description description text;

                     alter table dede_archives change column keywords keywords text;

 

接下来修改dede 文件下的 article_add.php 和 article_edit.php

$description = cn_substrR($description,500);

$keywords = cn_substrR($description,120);

其中红色的就是你想要字符数,分别是描述和关键词。
 

THE END
喜欢就支持一下吧
点赞0分享