嗨,我使用此代码显示具有相应图像的类别。我正在使用 prestashop 1.4.4
<ul>
{foreach from=$blockCategTree.children item=child name=blockCategTree}
{if $smarty.foreach.blockCategTree.last}
{include file="$branche_tpl_path" node=$child last='true'}
{else}
{include file="$branche_tpl_path" node=$child}
{/if}
<img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" />
{/foreach}
</ul>
通过使用 firebug 查看 src 属性,它显示了这样的路径 - /prestashop/img/c/-category.jpg
我想这样显示图像-“/prestashop/img/c/6-category.jpg”这里6是图像ID。我如何使用代码来获取上面的 url。