<?php wp_list_bookmarks('arguments'); ?>
<?php wp_list_bookmarks(); ?>
/* Simple List:*/
<?php wp_list_bookmarks('title_li=&category_before=&category_after='); ?>
/*Simple List without the Heading:*/
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
/*Specific Category Sorted by URL:*/
<?php wp_list_bookmarks('categorize=0&category=2&before=<span>&after=</span>&show_images=1&show_description=0&orderby=url'); ?>
/*Shows Ratings and Timestamp:*/
ol>
<?php wp_list_bookmarks('between=<br />&show_images=0&orderby=id&show_rating=1&show_updated=1'); ?>
</ol>
/*You can also spread a query-string over several lines (note the specific format of enclosing each parameter/value pair in single quotes and a dot starting each new line):*/
<?php wp_list_authors(
'show_fullname=1'
.'&feed=rss'
.'&optioncount=1'
); ?>