I am having a bit of trouble over at topmusicgossip.com the blogroll links show on the home page but not when you click on a post. I see the call for the sidebar, so I am not sure why it is not bringing the entire thing (including blogroll). Hoping one of your gurus can help. thanks
This is probably coded into the template. There is an option to show the blogroll only on the homepage or sitewide when you write the code (I always write wordpress themes to be homepage only). So you have two options 1 change theme 2 replace the code in the sidebar with
Here is the existing code, how do I change it to suit my needs? <?php if ( is_home() ) { ?> <h2><?php _e('Blogroll'); ?></h2> <ul> <?php get_links(-1, '<li>', '</li>', '', FALSE, 'name', FALSE, FALSE, -1, FALSE); ?> </ul>
Hi there jg123, sorry i was getting ahead of myself there with the editing if you replace the code shown in the quotes on my post above (iwhat you have highlighted plus <?php } ?> to <h2>Blogroll: </h2> <ul> <?php get_links_list(); ?> </ul> It should hopefully work ok (i'm just uploading to a theme viewer to test so bear with me
Hold the front page! Try this instead Replace with <h2><?php _e('Blogroll'); ?></h2> <ul> <?php get_links_list(); ?> </ul> I've tested this it works in mine