I want to place links on home page of my wp blog. Is it possible to place them on HP so that they don't appear on any other page. As if I place them in sidebars or at the bottom they appear on every page. thanks.
Put this code in the desired file (sidebar.php or footer.php). It should show the link only if you are displaying the homepage. <?php if ( is_home() ) { echo '<a href="http://example.com">Example</a>'; } ?> Code (markup): Next time please don't PM me, just ask here.