Having some trouble with wp_list_bookmarks
-
I’m using WP 2.3.1
I’m trying to use wp_list_bookmarks the same way that I’ve previously used get_links, but I can’t seem to get the parameters right.
On my links page I have
<h3>Personal Links</h3> <ul> <?php get_links(2); ?><br /> </ul> <h3>Resources</h3> <ul> <?php get_links(25); ?><br /> </ul>
I would like to use wp_list_bookmarks in the same way. I’m really having problems getting it down. Can anyone help me with this?
I’d also like to change my sidebar links widget to reflect a links rotation (similar to what I have in my left sidebar).
The code I’m current using for that is:
<ul><?php get_links('2,25', '<li>', '</li>', '', FALSE, 'rand', False, False, 10, True); ?> </ul>
I would like to know what in the links widget I would change to achieve that (at the moment I’ve put the code in the sidebar above the dynamic sidebar.
Any help would be greatly appreciated. I do know that I don’t immediately have to worry about changing the tags in my site’s theme, however it’s coming and I might as well get to it now.
Thanks in advance.
- The topic ‘Having some trouble with wp_list_bookmarks’ is closed to new replies.