I’m sorry but I’m not a PHP ‘whizzkid’. Could you give me an hand on what changes should I make on the sidebar.php file of my current theme (Buryy)? Here is what I have on its links section:
<?php $link_cats = $wpdb->get_results(“SELECT cat_id, cat_name FROM $wpdb->linkcategories”); foreach ($link_cats as $link_cat) {?>
<h3><?php echo $link_cat->cat_name; ?></h3>
<ul class=”menu”>
<?php wp_get_links($link_cat->cat_id); ?>
Many thanks for the help.