I’m using 2.0.5 —
It appears those attributes were overlooked when Dougal added the get_links_list() function, but the function comment specifies an unordered HTML list, which is correct.
My solution:
edit wp-includes/links.php
Mod the function as follows:
change the following lines (starting at 542-ish)
foreach ($cats as $cat) {
// Handle each category.
// First, fix the sort_order info
== trunc ===
bool_from_yn($cat['show_updated']));
// Close the last category
echo "nt</ul>n</li>n";
}
to:
foreach ($cats as $cat) {
echo ' <li id="linkcat-' . $cat['link_category'] . '"><h2>' . $cat['cat_name'] . "</h2>nt<ul>n";
wp_get_links($cat[link_category]);
}