Skip to content

Instantly share code, notes, and snippets.

@juarezpaf
Created September 7, 2009 04:40
Show Gist options
  • Save juarezpaf/182155 to your computer and use it in GitHub Desktop.
Save juarezpaf/182155 to your computer and use it in GitHub Desktop.
<?php
$bm = get_bookmarks( array(
'orderby' => 'name',
'order' => 'ASC',
'limit' => -1,
'category' => null,
'category_name' => 'Related Sites',
'hide_invisible' => 1,
'show_updated' => 0,
'include' => null,
'exclude' => null,
'search' => '.'));
foreach ($bm as $bookmark){
echo "<a id='relatedlinks' href='{$bmark->link_url}' target=_blank>
{$bmark->link_name}
</a><br /><br />";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment