magento 也想编辑“目录类别链接”小部件以显示特定类别的图像。我尝试编辑'category/widget/link/link_block.phtml'
<?php
$_category = $this->getCurrentCategory();
?>
<span class="widget widget-category-link">
<a <?php echo $this->getLinkAttributes() ?>>
<span><?php echo $this->htmlEscape($this->getAnchorText()) ?></span>
<img src="<?php echo $_category->getImageUrl();?>" />
</a>
<br/>
</span>