最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > CMS教程 > ECShop教程 >

ecshop中如何获取父级分类介绍

时间:2014-06-10 11:03来源: 作者: 点击:
打开 category.php 页面 步骤一: 找到 “ $smarty-assign('ur_here', $position['ur_here']); // 当前位置 ” (大概在 334 行),在这行下面加上以下代码。 $smarty-assign('current_cat_id',$cat_id); // 取得当前的
(责任编辑:admin)

打开category.php页面

步骤一:

找到“ $smarty->assign('ur_here',          $position['ur_here']);  // 当前位置(大概在334行),在这行下面加上以下代码。

$smarty->assign('current_cat_id', $cat_id); //取得当前的id

$catlist = array();

foreach(get_parent_cats($cat_id) as $k=>$v)

{   $catlist[] = $v['cat_id'];  }

$smarty->assign('current_cat_pr_id',$catlist[count($catlist)-1]);

if (count($catlist)>=2)

{  $smarty->assign('current_cat_t_id',$catlist[count($catlist)-2]);  }

 

步骤二:在模板库文件中直接引用就可以了,代码如下:

$current_cat_pr_id

判断是否与当前分类ID是否相等,引用不同Css模板,代码以下:

class="<!--{if $current_cat_pr_id eq $cat.id}-->haha<!--{else}-->hb<!--{/if}-->"

 

------分隔线----------------------------
栏目列表
推荐内容