在模板页里首页写上代码:
<?php
$children = get_children(16);//此处为产品分类ID
$this->assign( 'bestGoods16',get_category_recommend_goods('best', $children));
?>
第二步在调用产品的时候循环类似下面的代码
<ul>
<!-- {foreach from=$bestGoods16 item=goods name=name} -->
{if $smarty.foreach.name.iteration < 9}
<li class="clearfix" {if $smarty.foreach.name.iteration == 1}
style=background:none;
{/if}><a href="{$goods.url}" title="{$goods.name}" style="float:left;">{$goods.name|truncate:7}</a><span style="float:right;"> {$goods.shop_price}</span>
</li>
{/if}
<!-- {/foreach} -->
</ul>