Theme code orders links in order of creation
-
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?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Theme code orders links in order of creation’ is closed to new replies.