Well i am using wordpress and i need to know that how to make a linkt appear at front page only. I have jsut forgot the code for it.So if you have jsut post it. Thanks in advance..Surely will get some greens for it..
I don't mean for any specific location, but if its not cleared let me specify it, i need to place the link in footer and want to make it to appear at front page only. Arif
You may need to create a separate front page for that. I could be wrong but I think that because the footer is global any link you place in it will be sitewide.
Just edit the template and place php code at the footer. An 'if' statement depending on the URL the user is on, should do the trick. Let me know if you need help
If you want to add link only at homepage then use below given code. <?php if ( is_home() || is_page() ) { ?> Your link or ads anything you want <?php } ?> Code (markup): DON.