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>