dear all..... my site http://www.manutdfc.org are using WP with original theme. my problem is..... 1. I want to create 2 different sidebar for my blog, 1 for my main page & the 2nd for the others pages. The reason is bcoz I only want put the "resource link/link partner" on main page while the rest of the pages is without the "resource link/link partners" 2. I've been doing this by trying 2 create 2 different sidebar, but it's not successful..... what is the best method to do this? is it create 2 different sidebar configuration an ideal solution? Thank 4 helping out......
Goto your sidebar.php in the theme file and where the code is that includes the links put this: <? if (is_home()) { // put code to display links here // } ?> Code (markup): That conditional tag will only display the links on the home page. Hope that's clear.