Today I upgraded an older version of wordpress with a theme that used get_links instead of the new wp_list_bookmarks tag in its theme.
All of the links that were originally in my sidebar suddenly disappeared. This was expected (I guess) as the wordpress developers have apparently deprecated get_links and several other link tags.
After digging I found that wp_list_bookmarks is the appropriate tag to use in your theme. So I edited the following:
<div class="menuheader"><div><?php _e('Find Build Shop:'); ?></div></div>
<ul id='br_list'>
<?php get_links(2,'<li>','</li>',' ',false,'name',false,false,-1,false,true);; ?>
</ul>
to read only:
<div class="menuheader"><div><?php _e('Links:'); ?></div></div>
<?php wp_list_bookmarks('categorize=1&category_name=emulators'); ?>
I have one link category called emulators. However, now all of the links show up all of the time and I'm not able to use any categorization objects specified here: http://codex.wordpress.org/Template_Tags/wp_list_bookmarks properly. They simply break and the entire list of links is then displayed.
I've tried tons of different syntax and even used the examples on this page to no resolution.
Any help would be much appreciated.
I'm using WordPress 2.1.3 and have a heavily modified theme designed for http://www.gridcycle.com/ based on the original neuron theme.