Wordpress sidebar issue
I just loaded the latest verison of WP for a new blog. I have created a new link category called friends but I don't know how to get it in my sidebar. I have this code:
<?php get_links(-1, '<li>', '</li>', ' - '); >
which shows all my links together(friends, blogroll etc). I wan't to have them under seperate headings. Old installations of WP have the following code to dispaly link categories:
<?php get_links(2, '<li>', '</li>', '', TRUE, 'name', FALSE,TRUE);>
<?php get_links(3, '<li>', '</li>
', '', TRUE, 'name', FALSE,TRUE);>
There seems to be no way of assigning category ID numbers for my links as in the older versions of WP. Any ideas?
|