which is their ID number. I want to control the order, at least to make it aphabetical.
Here is the sidebar.php relevant code:
-----------------
Links
</div>
<?php
$link_cats = $wpdb->get_results("SELECT cat_id, cat_name FROM $wpdb->linkcategories");
foreach ($link_cats as $link_cat) {
?>
<div class="sidetext" id="linkcat-<?php echo $link_cat->cat_id; ?>"><div class="sidetext" align="left"><?php echo $link_cat->cat_name; ?>
</div>
<?php wp_get_links($link_cat->cat_id); ?>
</div>
<?php } ?>
<?php } ?>
-------------------
What should I be changing?