Hello, I have a Wordpress blog, and a I would like to display the links only on the index, not on every single page of the blog. I know that I should search in sidebar.php, but I don't know for what, and what should I do to make this work. I think that here I should modify something ... </div> <?php } ?> <?php /* If this is the frontpage */ if (is_home()) { ?> <?php $links_list_exist = @$wpdb->get_var("SELECT link_id FROM $wpdb->links LIMIT 1"); if($links_list_exist) { ?> <div class="sb-links"> <ul> <?php get_links_list(); ?> </ul> Please help.