這篇文章主要介紹了DEDECMS修改文章TAG 給TAG加鏈接 去掉TAG字數(shù)限制,需要的朋友可以參考下
1、給TAG加鏈接:
PHP Code復(fù)制內(nèi)容到剪貼板
{dede:tag sort=‘new‘getall=‘0‘}
[field:tag /]
{/dede:tag}
就可以調(diào)用出本文對應(yīng)的TAG,并且是帶鏈接的,
DEDECMS修改文章TAG 給TAG加鏈接 去掉TAG字數(shù)限制
,電腦資料
《DEDECMS修改文章TAG 給TAG加鏈接 去掉TAG字數(shù)限制》(http://www.msguai.com)。。。2、去掉系統(tǒng)默認TAG標簽的字數(shù)限制:
第一步:修改數(shù)據(jù)庫中表dede_tagindex 和dede_taglist的tag字段屬性:varchar(12)修改為varchar(255)
第二步:修改源碼,在include/archives.func.php中查找:if(isset($tag[12])
修改為:if(isset($tag[255])
在include/archives.func.php中查找:if(isset($tag[20])
修改為:if(isset($tag[255])
這樣就行了!