I have finally found some time to make some changes to the blog. So lets get rid of those sitewide blogroll / links that seem to come with a lot of the ‘out of the box’ WP themes available.
Before -
<h3>Links</h3>
<ul class=”list”>
<?php get_links(-1, ‘<li>’, ‘</li>’, ‘ – ‘); ?>
</ul>
After -
< ?php
if ( is_home() )
{
?>
<h3>Links</h3>
<ul class=”list”>
<?php
get_links(-1,’<li>’, ‘</li>’, ‘ – ‘);
?>
</ul>
<?php
}
?>
Job done.

Exactly what I needed, thanks!
August 4th, 2009