【ecshop中调用函数】ECSHOP中调用所有标签云的实现方法

更新时间:2019-08-11    来源:php函数    手机版     字体:

【www.bbyears.com--php函数】

修改方法
首先,让我们来打开 /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}
               
               
           
       
   

本文来源:http://www.bbyears.com/jiaocheng/61492.html