首页 > 网站 > 建站经验 > 正文

如何在ecshop首页或者分类页面调用后台指定广告

2024-04-25 20:41:33
字体:
来源:转载
供稿:网友

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表