Need to List a bunch of links, aka bookmarks, aka blogroll … This code comes in handy
<?php $args = array(
'orderby' => 'name',
'order' => 'ASC',
'limit' => -1,
'category' => ,
'category_name' => ,
'hide_invisible' => 1,
'show_updated' => 0,
'include' => ,
'exclude' => ,
'search' => ); ?>
<?php
$bookmarks = get_bookmarks( $args );
// Loop through each bookmark and print formatted output
foreach ( $bookmarks as $bm ) {
printf( '<a class="relatedlink" href="%s">%s</a><br />',
$bm->link_url, __($bm->link_name) );
}
?>

