Magento add wishlist_link to different block?

magento, magento-1.7

Solution

In the block view script I added the following which added a link to `/wishlist/`.

<a href="<?php echo $this->getUrl('wishlist') ?>">Wishlist</a>

Problem

I have removed the wishlist link from my top.links using my local.xml file: ``` <remove name="wishlist_link"/> ``` How do I add it elsewhere, for example in my minibasket?

Original source