{dede:field.content function='cn_substr(@me,80)'/}
[field:description /]標簽如何限制字數?
[field:description function='cn_substr(@me,80)'/]
dedecms 裡的所有標記都支持這樣使用函數的
{dede:sql sql='Select content from dede_arctype where id=20'}[field:contentfunction="cn_substr('@me',200)" /]
{/dede:sql}
field:content 這裡的body如上,就是文章的內容,(cn_substr(@me,130) 這裡的130 就是你准備讓內容顯示的字數,可以自己調整
但會發現有一個問題。就是連html也被截了下來。要過濾他。就使用
{dede:sql sql="SELECT body FROM `dede_sgpage` where aid = 1" }
[field:body function="htmlspecialchars(cn_substr(Html2text(@me),750))"/]
{/dede:sql}
*