两种ecshop调用指定的广告位的方法,在include/lib_goods.php文件下面新增:
function getads($cat,$num)
{
$sql = "SELECT * FROM " . $GLOBALS['ecs']->table('ad') . " where position_id=".$cat." and
$res = $GLOBALS['db']->getAll($sql);
}
二、然后再指定的位置的控制页面增加:
例如首页调用,我们在index.php页面增加
找到:$smarty->assign('promotion_goods', get_promote_goods()); // 特价商品
在他下面添加
$smarty->assign("banner",getads(1,4));
其中:1表示广告位置的id,4表示调用的数量。
打开 模板文件index.dwt,在指定位置调用即可。
二调用广告位的方法
id值表达广告位置的id。num表示数量
(责任编辑:最模板) |