一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

ECSHOP中调用所有标签云的实现方法

时间:2014-11-15 编辑:简简单单 来源:一聚教程网

修改方法
首先,让我们来打开 /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,鼠标定位到你想显示标签云的地方,加入下面代码

 代码如下 复制代码


   

       

标签云


       

           

               
               
                |
                {if $tag.bold}
                {$tag.tag_words|escape:html}
                {else}
                {$tag.tag_words|escape:html}
                {/if}
               

               

               
               
                {$lang.no_tag}
               
               

           

       

   


热门栏目