Upgrades

Hmm. It looks like WP 2.1.x (to which I just upgraded) has hidden the linkcategories table. Come out, come out, whereever you are! My left sidebar hurts!

Specifically, I’m trying to find the equivalent code for

$link_cats = $wpdb->get_results("SELECT cat_id, cat_name FROM $wpdb->linkcategories");
foreach ($link_cats as $link_cat) {
if (get_links($link_cat->cat_id, '', '', '', FALSE, '', FALSE, FALSE, -1, FALSE, FALSE)) {
...
}
}