*ecshop 限制文章帮助文章显示条数
1、打开 /themes/default/library/help.lbi 文件
<!-- {foreach from=$help_cat.article item=item} --> <dd><a href="{$item.url}" title="{$item.title|escape:html}">{$item.short_title}</a></dd> <!-- {/foreach} -->
将上面的代码改为
<!-- {foreach from=$help_cat.article name="help_list" item=item} --> {if $smarty.foreach.help_list.iteration lt 6} //有空要看懂是什么意思 <dd><a href="{$item.url}" title="{$item.title|escape:html}">{$item.short_title}</a></dd> {/if} <!-- {/foreach} -->
posted on 2013-07-11 00:14 unifyyeteng 阅读(342) 评论(0) 编辑 收藏 举报