经常看到有人问,如何把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_lset))

{
inlude_once(root_path. ‘includes/lib_clips.php’);
color_tag($tag_list);
}

$smarty->assign(‘tag_list’,$tag_list); //标签云

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

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

<!–标签云–>
<div>
<div>
<h3><span><a href=”/exchange.php”>标签云</a></span></h3>
<div>
<div 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><a href=”/tag_cloud.php”><img src=”images/more.gif” /></a></div>
</div>
</div>
</div>
</div>

最后,到后台更新下缓存,就可以了。