POST TIME:2019-09-29 14:48
織夢(mèng)DedeCMS文章內(nèi)容發(fā)布系統(tǒng)中可以選擇“頭條”、“推薦”、“特薦”等屬性,我們可以利用這些條件加一個(gè)判斷的標(biāo)簽,然后給文章列表加一個(gè)推薦的印戳,這樣大大提高了頁(yè)面的友好程度。
之前的文章中有一篇是在文章內(nèi)容頁(yè)加圖標(biāo)的,此篇?jiǎng)t是在列表頁(yè)加的,請(qǐng)注意區(qū)別。
[field:flag runphp='yes'] if(stristr(@me,”c”)) @me = “[推薦]“;else @me = ”;[/field:flag]
[field:flag runphp='yes'] if(stristr(@me,”a”)) @me = “[特薦]“;else @me = ”;[/field:flag]
如果用圖標(biāo)
[field:flag runphp='yes'] if(stristr(@me,”a”)) @me = “<img src=’圖片地址’>”;else @me = ”;[/field:flag]
[field:flag runphp='yes'] if(stristr(@me,”c”)) @me = “<img src=’圖片地址’>”;else @me = ”;[/field:flag]