Links from the Links Manager
-
I’m using the Tiga theme and it has the following code to pull in my links (which are now under Blogroll in WP2.1). What do I need to change in the following code to make it display properly in WP2.1?
<!-- 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">
<ul>
<?php wp_get_links($link_cat->cat_id); ?>
</ul>
</div>
<?php
}
}
?>
<!-- End - Links from the 'Links Manager'-->
- The topic ‘Links from the Links Manager’ is closed to new replies.