Beauty, it worked. I was using a different function before. Just in case someone stumbles on this thread later here is what I had before & after:
BEFORE:
PHP Code:
<div id="sidebar">
<div class="navigation">
<h1>Navigate</h1>
<ul>
<li><a href="<?php echo get_settings('home'); ?>/">Home</a>
<?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?></li>
</ul>
<h1>Categories</h1>
<ul>
<li><?php wp_list_cats(); ?></li>
</ul>
<!-- THIS IS WHERE THE PROBLEM WAS -->
<h1>Other Blogs</h1>
<ul>
<li><?php wp_get_linksbyname('Blogroll') ?></li>
</ul>
<h1>Archive</h1>
<ul>
<li><?php wp_get_archives('type=monthly'); ?></li>
</ul>
</div>
<div class="clearer"><span></span></div>
</div>
AFTER:
PHP Code:
<div id="sidebar">
<div class="navigation">
<h1>Navigate</h1>
<ul>
<li><a href="<?php echo get_settings('home'); ?>/">Home</a>
<?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?></li>
</ul>
<h1>Categories</h1>
<ul>
<li><?php wp_list_cats(); ?></li>
</ul>
<!-- ALL FIXED... thanks JOHNNY GULAG -->
<h1>Other Blogs</h1>
<ul>
<?php get_links(2, '<li>', '</li>','', false, 'length', false,false, 10, false, true); ?>
</ul>
<h1>Archive</h1>
<ul>
<li><?php wp_get_archives('type=monthly'); ?></li>
</ul>
</div>
<div class="clearer"><span></span></div>
</div>
Bookmarks