If you’re working with the links manager, and your links are categorized, this is default WordPress behavior.
No, it’s not. At least not in the 1.5beta. They are listed alphabetically by name and there doesn’t appear to be any way to change this.
I’ve tried.
Look for an area in your index.php which says:
get_links
Change that to:
get_links_list
i’m using 1.2.2 i think and i just found out how to do it. its pretty simple.
http://wiki.wordpress.org/?pagename=HowToOrderLinkCategories
basically its
<li id="category name found in link manager"><?php _e('title you want to be seen on page example "friends:"'); ?>
<ul>
<?php wp_get_links(category id number from link manager)?>
</ul>
</li>
its listed here
http://wiki.wordpress.org/?pagename=HowToOrderLinkCategories
but they don’t tell you how to put display the name of the category on the page like “friends:” followed by the links.
however i have already mentioe dthe code above 🙂
hope it helps
Ronny, that’s how you ORDER categories. To just use link categories in general (since most templates don’t), you have to change wp_get_links to wp_get_links_list it’s that simple.