ECSHOP中调用所有标签云的实现方法
标签云是ECSHOP中自带的一个功能,但是如果我们希望在指定网页调用所有标签云是需要进行一些修改的,下面我们来看一个ECSHOP首页调用标签云的所有标签例子.
修改方法:
首先,让我们来打开 /index.php文件找到如下代码:
$smarty->assign('shop_notice', $_CFG['shop_notice']); // 商店公告
在它下边增加PHP代码:
- $sql = 'select tag_id, user_id tag_words, count(tag_id) as tag_count from '.$GLOBALS['ecs']->table('tag').”GROUP BY tag_words”;
- $tag_list = $GLOBALS['db']->getAll($sql);
- if(!Empty($tag_list)){
- include_once(ROOT_PATH.'includes/lib_clips.php');
- $color_tag($tag_list);
- }
- $smarty->assign('tag_list', $tag_list);
然后,我们再打开 模板文件/themes/default/index.dwt,鼠标定位到你想显示标签云的地方,加入下面代码.
class="box"> class="box_1">"/exchange.php" class="f6">标签云
class="centerPadd"> class="clearfix goodsBox" style="border:none;">- "font-size:{$tag.size}; line-height:36px;"> | "{$tag.url}" style="text-decoration:none;color:{$tag.color}">
- {if $tag.bold}
- {$tag.tag_words|escape:html}
- {else}
- {$tag.tag_words|escape:html}
- {/if}
- "margin:2px 10px; font-size:14px; line-height:36px;">{$lang.no_tag}
- //开源软件:phpfensi.com
class="blank5">

