DESTOON7.0任意模块根据itemid调取content内容
在自定义函数文件中 api\extend.func.php中加入以下代码 function getContentbyId($moduleid,$itemid,$split=1){global $db;$content_table = content_table($moduleid, $itemid,$split);$t = $db-get_one("select content from {$content_table} where itemid=$itemid")
小黑 开发技术2019-09-06
DESTOON任意页面获取会员商铺参数logo信息
小黑 开发技术2018-10-15
DESTOON6.0任意页面显示分类描述
描述有利于收录,我们今天就来加上这个功能,在自定义函数文件 中加入一下代码找到 api/extend.func.php加入 ://任意页面显示分类描述function cat_description($catid) {global $db;$catid = intval($catid);$seo_description = '';$r = $db-get_one("SELECt seo_description FROM {$db-pre}category WHER&
小黑 开发技术2016-11-18
DetToon获取任意栏目名称的方法
api/extend.func.php 加入以下函数function cat_name($catid) {global $db;$catid = intval($catid);$catname = '';$r = $db-get_one("SELECt catname FROM {$db-pre}category WHERe catid=$catid");$catname = $r['catname'];return $cat
小黑 开发技术2016-10-13