If your template works with widgets then go to Presentation>Widgets in your admin and drag the blogroll widget to the sidebar.
If not then follow the instructions to put the code in your sidebar.php http://codex.wordpress.org/Template_Tags/wp_get_links
Thread Starter
v2006
(@v2006)
Thanks I added the links code to my sidebar, however how do I remove the extra bullet point at the end of “about me”
Here’s the code I am using for this sidebar:
<div id="sidebar">
<div id="noindent">
<h2>Categories</h2>
<?php wp_list_cats('sort_column=name') ?>
<h2>Archives</h2>
<?php wp_get_archives('type=monthly'); ?>
<h2>About me</h2>
- Name: Su Crutchfield
- Location: South of Annapolis, near the Chesapeake Bay
- Age: Well over 30!
- Hobbies: Talking (is that a hobby?), Reading, Writing, Fitness, Dance, Music
- Not-so-personal info: Married, 1 son (15 year old unschooler)
<?php get_links_list('id'); ?>
</div> <!-- end of noindent -->
</div>