如何在首页显示特定的栏目产品

2016-07-07 15:05 来源:www.chinab4c.com 作者:ecshop专家



如题,我想显示特定栏目的最新产品栏目ID为6名称为 涡轮

请问改怎么显示呢 ?

回答:
直接$re = $db -> getAll("select * from ecs_goods where cat_id = 6 and is_new = 1")

3# xiongbing521

那这个放在哪里呢 ??在模板怎么调用呢

{foreach from=$categories item=cat name=cat }
{if $cat_id == 6}
<li><a href="{$goods.url}" title="{$goods.name|escape:html}">{$goods.short_style_name|truncate:20:"..."}</li>
{/if}
{/foreach}

这样写也没能调用出来 /

自己顶起来!