Hi there, How do I insert a link in the sidebar of my theme in Wordpress, without it being sitewide? If I insert the code in sidebar.php, it just becomes sitewide. How do I insert a link in the sidebar, but only on index? Thanks, dmi EDIT: Found out how to do it. <?php if ( is_home() ) { ?> WHATEVER YOU WANT HERE <?php } ?> Code (markup): Mods, please close the thread.
Want to add little in this code if you want to omit pages (about us,contact etc) as well. <?php if ( is_home() [B]|| is_page() )[/B] { ?> [B]Your Link Here[/B] <?php } ?> Code (markup): DON.