Which template tag is your theme using to display them?
Is this what you’re looking for from the sidebar template?
<?php get_links_list(); ?>
Ok, get_links_list will order ’em by ID or by Name.
get_links offers a lot more flexibility if that’s what you’re into.
So all we need to do is change <?php get_links_list(); ?> to <?php get_links(); ?>?
As a start, sure. But you’ll want to keep that link to the doc handy if you don’t like the default parms.
And I’m a bit thick – if you’re on 2.1.x, do have a look at wp_list_bookmarks instead.
wp_list_bookmarks(array(of parameters));
It appears that when
'show_images' => true
setting
'show_description' => true
has no effect. (v2.2)
Is that the intended behavior?
Correction… it does work as advertised. I had spelt ‘show_dscription’ rather than ‘show_description’.
‘between’ => ‘\n’ does not produce the results I expected
‘between’ => ‘
‘ does, however