POST TIME:2021-05-23 01:09
解除織夢dedecms欄目和文章關(guān)鍵詞、描述字?jǐn)?shù)限制
1、改數(shù)據(jù)庫里相關(guān)字段
2、DEDE后臺,系統(tǒng)工具---SQL命令行工具---運(yùn)行SQL命令行
alter table dede_arctype change column description description text;
alter table dede_arctype change column keywords keywords text;
這樣幾個(gè)解決欄目的關(guān)鍵詞和描述字?jǐn)?shù)的限制,你要多少字?jǐn)?shù)就多少
3、改變文章內(nèi)容的關(guān)鍵詞和描述字?jǐn)?shù):
DEDE后臺,系統(tǒng)工具---SQL命令行工具---運(yùn)行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,300);——后面數(shù)字的就是你想要字符數(shù)。
$keywords = cn_substrR($description,120);——后面數(shù)字的就是你想要字符數(shù)。
|