When you put a link in the sidebar, it goes onto every page across your site. How do I only get links to my friends sites on the home page only? Is there a plugin or do I need to do something in the code?
I'm not sure if there's a plugin but I use ling categories and conditional tags on my sidebar. I have link categories named sitewide and homepage. In the sidebar I use the code: <?php if (is_home()) { ?> <?php wp_list_bookmarks('category_name=homepage&title_li=&categorize=0'); ?> <?php } else { ?> <?php wp_list_bookmarks('category_name=sitewide&title_li=&categorize=0'); ?> <?php } ?> Code (markup): If a link must appear on the homepage and sitewide, I assign it to both categories. Here's more on the wp_list_bookmarks tag: http://codex.wordpress.org/Template_Tags/wp_list_bookmarks