Destoon在列表页调用文章内容的方法

对于destoon的列表里需要循环调用文章内容的朋友,可以使用以下办法

include/global.func.php 加入以下函数


 

function co
ntent($itemid) {


        global $db;


        $row = $db->get_one(“SELEC
t * FROM {$db->pre}sell_data_5 WHER
e itemid=$itemid”);


        return $row[‘content’];


}


在循环标签中使用

{co
ntent($t[itemid])}