您的位置:首页 > 运维架构

ECSHOP首页如何调用所有标签? 标签云效果

2012-05-22 11:13 525 查看
首先,让我们来打开 /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_lset))

{

inlude_once(root_path. 'includes/lib_clips.php');

color_tag($tag_list);

} $smarty->assign('tag_list',$tag_list); //标签云

然后,我们再打开 模板文件 /themes/default/index.dwt

鼠标定位到你想显示标签云的地方,加入下面代码

<!--标签云-->

<div class="box">

<div class="box_1">

<h3><span><a href="/exchange.php" class="f6">标签云</a></span></h3>

<div class="centerPadd">

<div class="clearfix goodsBox" style="border:none;">

<!-- {if $tag_list} -->

<!-- 标签云开始 {foreach from=$tag_list item=tag}-->

<span style="font-size:{$tag.size}; line-height:36px;"> | <a href="{$tag.url}" style="text-decoration:none;color:{$tag.color}">

{if $tag.bold}

<b>{$tag.tag_words|escape:html}</b>

{else}

{$tag.tag_words|escape:html}

{/if}

</a>

</span>

<!-- 标签云结束 {/foreach}-->

<!-- {else} -->

<span style="margin:2px 10px; font-size:14px; line-height:36px;">{$lang.no_tag}</span>

<!-- {/if} -->

<div class="more"><a href="/tag_cloud.php"><img src="images/more.gif" /></a></div>

</div>

</div>

</div>

</div>

<div class="blank5"></div>
最后,到后台更新下缓存,就可以了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: