Ok. That makes sense.
So, if my code is …
<!– Begin – Links from the ‘Links Manager’–>
<?php
$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)) {
?>
<div class=”left-widget-title”
id=”linkcat-<?php echo $link_cat->cat_id; ?>”>
<?php echo $link_cat->cat_name; ?>
</div>
<div class=”left-widget”>
<?php wp_get_links($link_cat->cat_id); ?>
</div>
<?php
}
}
?>
<!– End – Links from the ‘Links Manager’–>
Where would I change the code and to what?