方法一:
{dede:arclist typeid=’9′ titlelen=’40′ orderby=” limit=’0,5′}
說明:arclist,的詳細引數說明在後臺的模板裡面有詳細說明,具體可參考那裡的介紹。其中:titlelen,可以擷取字串的個數,這裡的意思是輸出20個漢字
方法二:
{dede:arclist typeid=’9′ titlelen=’40′ orderby=” limit=’0,5′}
說明:[field:title function="cn_substr(@me,10)"/],意思就是:擷取欄位 title 的前10個字元,即5個漢字
更多函式解析:
基本語法:函式一:function=cn_substr(@me,200)(功能:獲取指定數值的字串)函式二:function=html2text(@me)(功能:去掉html樣式,轉換為純文字字元)函式三:function=GetDateTimeMk(‘@me’)(功能:根據秒數返回時間)函式四: function=“GetDateMK(@me) (功能:根據秒數返回日期)函式五: function=‘strftime(“%m-%d”,@me)’(功能:根據秒數返回格式化的日期或者時間,php自帶的函式)首頁: 08 [field:pubdate function=strftime('%d',@me)/] 08 日 [field:pubdate function=strftime('%d日',@me)/] 06-08 [field:pubdate function=strftime('%m-%d',@me)/] 06月08日 [field:pubdate function=strftime('%m月%d日',@me)/] 09-06-08 [field:pubdate function=strftime('%y-%m-%d',@me)/] 2009-06-08 [field:pubdate function=strftime('%Y-%m-%d',@me)/] 09年06月08日 [field:pubdate function=strftime('%y年%m月%d日',@me)/] 2009年06月08日 [field:pubdate function=strftime('%Y年%m月%d日',@me)/] 2009-06-08 13:28 [field:pubdate function=strftime('%Y-%m-%d %H:%M',@me)/]列表頁: [field:pubdate function="GetDateTimeMK(@me)"/]==2008-1-1 18:30:02 [field:pubdate function="GetDateMK(@me)"/]==2008-05-15 函式六: function=‘str_replace(“lit_”,“”,@me) (功能:替換字串) 函式七: function=MyDate(‘m-d’,@me) (功能:返回格林威治標準時間) 組合函式:function="html2text(cn_substr('@me',200))"(功能:提取指定個數的字串並去掉html樣式,轉換為純文字字元)舉例: {dede:field.content function="Html2Text(cn_substr('@me',110))" /}功能:獲取欄目資訊摘要資訊(提取110個字元[55個漢字]),刪除hml標籤元素,轉為純文字!