ecshop的分类广告,因为分类很多,不可能所有分类用同一个广告,那么我们设置广告通过分类的ID判断,但是ecshop默认没有提供这些功能,最模板提供方法:
首先增加函数:
function get_adv($type,$id)
{
$sql = "select ap.ad_width,ap.ad_height,ad.ad_name,ad.ad_code,ad.ad_link from ".$GLOBALS['ecs']->table('ad_position')." as ap left join ".$GLOBALS['ecs']->table('ad')." as ad on ad.position_id = ap.position_id where ad.ad_name='".$type."_".$id."' and ad.media_type=0 and UNIX_TIMESTAMP()>ad.start_time and UNIX_TIMESTAMP()<ad.end_time and ad.enabled=1";
$res = $GLOBALS['db']->getRow($sql);
if($res)
return "<a href='".$res['ad_link']."' target='_blank'><img src='zuimoban/afficheimg/".$res['ad_code']."' width='".$res['ad_width']."' height='".$res['ad_height']."' /></a>";
else
{
return "";
}
}
若是在首页分类下调用,代码就是 <?php echo get_adv('zuimoban_y',$GLOBALS['smarty']->_var['goods_cat']['id'])?>
若是在分类频道下调用,代码就是<?php echo get_adv('zuimoban_d',$GLOBALS['smarty']->_var['category'])?>
后台广告位是cat_y_id
新闻热点
疑难解答