- 我们在ecshop模板制作当中,有时候对广告的调用不能局限于默认的ecshop的表情规则,比如要调用后台指定广告位下所有广告循环,如何处理呢?
- 最模板抽空做了个函数:
- function get_position_ads($id)
- {
- $sql = “select * from ” . $GLOBALS[‘ecs’]->table(‘ad’) . ” where position_id = “.$id.” AND enabled = 1 order by ad_id”;
- $rows = $GLOBALS[‘db’]->getAll($sql);
- if($rows )
- {
- $sql = “select ad_width,ad_height from ” . $GLOBALS[‘ecs’]->table(‘ad_position’) . ” where position_id = “.$id.” limit 1″;
- $ad_position = $GLOBALS[‘db’]->getRow($sql);
- foreach($rows as &$row )
- {
- $row[‘pic’]= ‘data/afficheimg/’.$row[‘ad_code’];
- $row[‘width’] = $ad_position[‘ad_width’];
- $row[‘height’] = $ad_position[‘ad_height’];
- }
- }
- return $rows;
- }
- 然后显示页加入 $smarty->assign(‘zuimoban’, get_position_ads(1)); 后面的1 指的是广告位ID.
- 模板里引入:
- {foreach from=$zuimoban item=zuimobanlist}
- <td><a href=”{$zuimobanlist.ad_link}” title=”{$zuimobanlist.ad_name}” target=”_blank”><img src=”{$zuimobanlist.pic}” width=”980″ height=”387″ alt=”{$zuimobanlist.ad_name}” /></a></td>
- {/foreach}
- 至此模板上调用指定广告位就正常显示了。 以后只需改指定广位下广告就行
zhanceo
诚乃立身之本、信为道德之基
常见问题
- 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。
相关文章
猜你喜欢
- ecshop教程:安装遇到安装数据失败的解决方法 2021-09-07
- ecshop教程:显示某商品销售累计效果的实现代码 2021-09-07
- ecshop后台上传商品图片提示图片格式不正确的解决方法 2021-09-07
- 关于ECSHOP模板架设的服务器php版本过高报错的解决方法集合 2021-09-07
- ecshop退出登录会清空购物车的bug优化最佳解决方法 2021-09-07
- 强化ECSHOP搜索功能 -随机关键词+拼音搜索+分词搜索 2021-09-07
- ecshop二次开发网页模板之常用函数汇总 2021-09-07
- ecshop教程:编辑器kindeditor图片上传添加水印功能 2021-09-07
- ecshop教程:解决会员找回密码无法使用的BUG 2021-09-07
- ecshop网站模板在线QQ客服代码详细分析 2021-09-07